-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
26 lines (24 loc) · 1.01 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="parameters",
version="0.2.1",
packages=['parameters'],
author="The NeuralEnsemble Community",
author_email="[email protected]",
description="Management of large, hierarchical parameter sets for modelling and simulation",
long_description=open("README.txt").read(),
license="GPLv2",
keywords=('simulation', 'parameters', 'hierarchical'),
url = "http://neuralensemble.org/parameters",
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)