-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 771 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 771 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
27
28
29
30
31
32
33
34
35
36
37
[project]
name = "bdh-spike"
version = "0.1.0"
description = "Native Spiking Neural Network (SNN) implementation of the Baby Dragon Hatchling (BDH) architecture for Neuromorphic & Edge AI with Continual Learning."
authors = [{ name = "Krzysztof Pika" }]
requires-python = ">=3.13"
dependencies = [
"torch>=2.6",
"snntorch>=0.9",
"spikingjelly>=0.0.0.0.14",
]
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-cov>=6.0",
"ruff>=0.9",
"mypy>=1.14",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bdh_spike"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.mypy]
python_version = "3.13"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"