forked from pwollstadt/IDTxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1007 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from distutils.core import setup
# http://www.diveintopython3.net/packaging.html
# https://pypi.python.org/pypi?:action=list_classifiers
with open('README.txt') as file:
long_description = file.read()
setup(
name = 'idtxl',
packages = ['idtxl'],
version = '0.1',
description = 'Information Dynamics Toolkit XL',
author = 'Patricia Wollstadt',
author_email = '[email protected]',
url = 'https://github.com/pwollstadt/IDTxl',
long_description = long_description,
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Environment :: Console",
"Environment :: Other Environment",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
)