-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 779 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 779 Bytes
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
from setuptools import setup, find_packages
setup(
name="rA9",
version='0.1.0',
license='GPLv3',
author="Dongyeong Kim, Jaeseok Lee, Junho Yeo, Yoongi Kim",
author_email="dongyeongkim33@gmail.com, jepetolee@gmail.com, hanaro0704@gmail.com, naver7731@naver.com",
description="Spiking Neural Network Library based on the spike-based error backpropagation",
long_description=open('README.md').read(),
url='https://github.com/MarkusAI/rA9',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"jax>=0.2.0",
"jaxlib>=0.1.55",
"future>=0.18.2",
"h5py>=2.3.0",
"requests>=2.22.0"
]
)