root/trunk/setup.py

Revision 336, 1.2 kB (checked in by mueller, 2 months ago)

added some (PyPI) classifiers to setup.py

Line 
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 setup(
6     name = "NeuroTools",
7     version = "0.1.0",
8     package_dir={'NeuroTools': 'src'},
9     packages = ['NeuroTools',
10                 'NeuroTools.utilities',
11                 'NeuroTools.spike2',
12                 'NeuroTools.spike2.sonpy',
13                 'NeuroTools.datastore',
14                 'NeuroTools.datastore.django_orm',
15                ],
16     package_data={'NeuroTools': ['doc/*.txt', 'README']},
17     author = "The NeuralEnsemble Community",
18     author_email = "neurotools@neuralensemble.org",
19     description = "A collection of tools to support all tasks associated with a neural simulation project which are not handled by the simulation engine",
20     license = "GPLv2",
21     keywords = ('computational neuroscience', 'simulation', 'analysis', 'visualization', 'parameters'),
22     url = "http://neuralensemble.org/NeuroTools",
23     classifiers = ['Development Status :: 3 - Alpha',
24                    'Environment :: Console',
25                    'License :: OSI Approved :: GNU General Public License (GPL)',
26                    'Operating System :: POSIX',
27                    'Topic :: Scientific/Engineering',
28                    'Topic :: Utilities',
29                   ],
30      )
Note: See TracBrowser for help on using the browser.