-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
40 lines (36 loc) · 925 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
36
37
38
39
40
from setuptools import setup, find_packages
with open("README.md", "r") as f:
readme = f.read()
requirements = [
"torch>=1.2.0",
"torchvision",
"matplotlib",
"numpy",
"pandas",
"sklearn",
"pre-commit",
]
extras = {
"examples": [
"gym",
"tensorflow>=2.0.0",
"ray[tune]",
"ray[debug]",
"requests",
"bayesian-optimization",
],
"tests": ["pytest", "coverage", "pytest-cov"],
}
setup(
name="pysnn",
version="0.1.1",
description="Framework for engineering and simulating spiking neural networks, built on top of PyTorch.",
long_description=readme,
long_description_content_type="text/markdown",
author="Bas Buller",
author_email="bas.buller@gmail.com",
packages=find_packages(exclude=("tests", "examples")),
install_requires=requirements,
extras_require=extras,
python_requires=">=3.6.0",
)