-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
31 lines (28 loc) · 943 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
#!/usr/bin/env python
'''PyPNS setup.py file'''
# import os
# import shutil
try:
from setuptools import setup
except ImportError as ie:
print('please install setuptools')
raise ie
setup(
name = "PyPNS",
version = "0.1.0",
maintainer = "Carl H Lubba",
maintainer_email = '[email protected]',
packages = ['PyPNS'],
url='https://github.com/caaarl/PyPNS',
download_url = 'https://github.com/caaarl/PyPNS/archive/0.1.0.tar.gz',
license='LICENSE',
description='A peripheral nerve simulator built on NEURON',
#long_description=,
install_requires = ['numpy', 'scipy', 'matplotlib'], # , 'neuron' excluded because we need a higher version.
provides = ['PyPNS'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)