forked from valmikikothare/bioplnn
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.01 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bioplnn"
version = "0.0.1"
authors = [{ name = "Valmiki Kothare", email = "valmiki.kothare.vk@gmail.com" }]
description = "A biologically plausible neural network package"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"torch<=2.5.1",
"torchvision<=0.20.1",
"torch-sparse",
"torch-scatter",
"torchode",
"opencv-python",
"matplotlib",
"pandas",
]
[project.optional-dependencies]
dev = [
"addict",
"gdown",
"hydra-core",
"hydra-submitit-launcher",
"ipykernel",
"pre-commit",
"pytest",
"ruff",
"scikit-learn",
"seaborn",
"tqdm",
"wandb",
]
[project.urls]
Homepage = "https://github.com/FieteLab/torch-biopl-dev.git"
Issues = "https://github.com/FieteLab/torch-biopl-dev/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]