-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (33 loc) · 1.14 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
from setuptools import setup, find_packages
setup(
name='spinnaker_structural_plasticity',
version='1.0.0',
packages=find_packages(),
url='https://github.com/pabogdan/neurogenesis',
license="GNU GPLv3.0",
author='Petrut Antoniu Bogdan',
author_email='petrut.bogdan@manchester.ac.uk',
description='Simulating Structural plasticity on SpiNNaker',
# Requirements
dependency_links=[],
install_requires=["numpy",
"scipy",
"brian2",
"spynnaker",
"matplotlib",
"sklearn",
"statsmodels",
"elephant",
"colorama",
"quantities"],
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",
]
)