-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (39 loc) · 1.38 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
45
46
47
from setuptools import setup, find_packages
setup(
name='pynn_object_serialisation',
version='0.0.1',
packages=find_packages(),
url='https://github.com/pabogdan/pynn_object_serialisation',
license="GNU GPLv3.0",
author='Petrut Antoniu Bogdan',
author_email='[email protected]',
description='Write PyNN object to disk for later use',
# Requirements
dependency_links=[],
install_requires=["numpy",
"scipy",
"pynn",
"keras",
"keras_rewiring",
"matplotlib",
"tensorflow",
"argparse",
"pillow",
"colorama",
"brian2",
"scikit-learn"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 2"
"Programming Language :: Python :: 2.7"
"Programming Language :: Python :: 3"
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
"Topic :: Scientific/Engineering",
]
)