-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (35 loc) · 1.08 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
version = "0.2.5"
setup(
name="bindsnet_qa",
version=version,
description="Spiking neural networks for ML in Python",
license="AGPL-3.0",
long_description=long_description,
long_description_content_type="text/markdown", # This is important!
url="http://github.com/Hananel-Hazan/bindsnet",
author="Daniel Saunders, Hananel Hazan, Darpan Sanghavi, Hassaan Khan",
author_email="[email protected]",
packages=find_packages(),
zip_safe=False,
download_url="https://github.com/Hananel-Hazan/bindsnet/archive/%s.tar.gz"
% version,
install_requires=[
"numpy>=1.14.2",
"torch>=1.2.0",
"torchvision>=0.4.0",
"tensorboardX>=1.7",
"tqdm>=4.19.9",
"matplotlib>=2.1.0",
"gym>=0.10.4",
"scikit_image>=0.13.1",
"scikit_learn>=0.19.1",
"opencv-python>=3.4.0.12",
"pytest>=3.4.0",
"scipy>=1.1.0",
"cython>=0.28.5",
"pandas>=0.23.4",
],
)