-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (37 loc) · 1.04 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
install_requires = [
"numpy==1.15.4",
"scipy==1.3.0",
"brian2",
"neo==0.7.1",
"pynn==0.9.5",
"h5py",
"matplotlib",
"argparse",
"elephant==0.6.2",
"colorama",
"pandas==0.23.4",
"hilbertcurve"
]
setup(
name='spinncer',
version='1.0.0',
packages=find_packages(),
url='https://github.com/pabogdan/spinncer',
license="GNU GPLv3.0",
author='Petrut Antoniu Bogdan',
author_email='[email protected]',
description='Simulating a large scale Cerebellum model on SpiNNaker',
# Requirements
install_requires=install_requires,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3.7"
"Topic :: Scientific/Engineering",
]
)