root/trunk/setup.py

Revision 510, 1.4 KB (checked in by pierre, 2 weeks ago)

Bug in the setup file...

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