-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (34 loc) · 1.07 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
from setuptools import setup, find_packages
install_requires = [
'numpy',
'matplotlib',
'spinngym',
'brian2',
'quantities==0.12.4',
'elephant==0.7.0',
'neo==0.8.0',
'argparse',
]
setup(
name='vor_cerebellum',
version='0.0.1',
packages=find_packages(),
url='https://github.com/SpiNNakerManchester/vor_cerebellum',
license="GNU GPLv3.0",
author='Petrut Antoniu Bogdan',
author_email='petrut.bogdan@manchester.ac.uk',
description='Simulating a small scale Cerebellum model on '
'SpiNNaker with online learning to perform the vestibulo-ocular reflex',
# 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",
]
)