forked from laurentperrinet/NeuroTools
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (36 loc) · 1.61 KB
/
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
32
33
34
35
36
37
38
#!/usr/bin/env python
from distutils.core import setup
setup(
name = "NeuroTools",
version = "0.3.1",
package_dir={'NeuroTools': 'src'},
packages = ['NeuroTools',
'NeuroTools.utilities',
'NeuroTools.tisean',
'NeuroTools.spike2',
'NeuroTools.signals',
'NeuroTools.spike2.sonpy',
'NeuroTools.datastore',
'NeuroTools.parameters',
'NeuroTools.optimize',
],
package_data={'NeuroTools': ['doc/*.rst']},
author = "The NeuralEnsemble Community",
author_email = "[email protected]",
description = "NeuroTools is a collection of tools to support all tasks associated with the analysis of neural activity - from neurophysiology to neural simulations. ",
long_description=open("README.rst").read(),
license = "GPLv2",
keywords = ('computational neuroscience', 'simulation', 'analysis', 'visualization', 'parameters'),
url = "http://neuralensemble.org/NeuroTools",
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)