forked from BindsNET/bindsnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (66 loc) · 1.45 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "bindsnet"
version = "0.3.1"
description = "Spiking neural networks for ML in Python"
authors = [ "Hananel Hazan <[email protected]>", "Daniel Saunders", "Darpan Sanghavi", "Hassaan Khan" ]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/BindsNET/bindsnet"
documentation = "https://bindsnet-docs.readthedocs.io/"
keywords = ["spiking", "neural", "networks", "pytorch"]
[tool.poetry.dependencies]
python = ">=3.7.10,<3.10"
numpy = "^1.19.5"
scipy = "^1.7.1"
Cython = "^0.29.24"
torch = "1.10.2"
torchvision = "0.11.3"
torchaudio = "0.10.2"
tensorboardX = "2.2"
tqdm = "^4.62.2"
matplotlib = "^3.4.3"
gym = "^0.10.4"
scikit-build = "^0.12.0"
scikit-image = "^0.18.3"
scikit-learn = "^0.24.2"
opencv-python = "^4.5.3"
pandas = "^1.3.2"
foolbox = "^3.3.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pre-commit = "^2.14.0"
notebook = "^6.4.10"
jupyterlab = "^3.1.9"
isort = "^5.9.3"
black = "^21.7b0"
autoflake = "^1.4"
Sphinx = "3.4.3"
sphinx-rtd-theme = "0.5.1"
imagecodecs = "^2021.8.26"
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
line_length = 88
src_paths = ["bindsnet", "test"]
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.venv
| \.github
| build
| dist
| BindsNET.egg-info
| notebooks
| data
| logs
)/
'''