-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (29 loc) · 986 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
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(
name = "spiral_ganglion",
version = "1",
author = "Marek Rudnicki",
author_email = "[email protected]",
description = "Spiral ganglion model.",
license = "GPLv3+",
packages = find_packages(),
package_data = {
"spiral_ganglion": ["*.mod"]
},
long_description = long_description,
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
platforms = ["Linux", "FreeBSD"],
install_requires=["numpy", "neuron", "cochlea"],
)