-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1018 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
32
33
34
35
"""
Setup script for pip.
"""
import sys
from setuptools import setup
assert (
sys.version_info.major == 3 and sys.version_info.minor >= 6
), "Python version must be >=3.6 to install Spikey!"
setup_args = {
"name": "spikey",
"version": "1.0",
"description": "Spikey is a malleable spiking neural network framework and training platform.",
"license": "MIT",
"author": "Cole",
"author_email": "[email protected]",
"packages": ["spikey"],
"install_requires": ["numpy==1.23.1", "ray==2.9.2", "gym==0.25.1", "matplotlib==3.5.2"],
"python_requires": ">=3.6",
"url": "https://github.com/SpikeyCNS/spikey",
"classifiers": [
"Programming Language :: Python :: 3.8",
"License :: MIT License",
"Operating System :: OS Independent",
],
}
if __name__ == "__main__":
with open("README.md", "r") as f:
setup_args["long_description"] = f.read()
setup_args["long_description_content_type"] = "text/markdown"
setup(**setup_args)