-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 976 Bytes
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 976 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
name = "spyx"
version = "0.1.20"
description = "Spyx: SNNs in JAX"
authors = [
{ name = "Kade Heckel", email = "kade.heckel@gmail.com" }
]
dependencies = [
"dm-haiku",
"optax",
"jax_tqdm",
"nir",
]
readme = "README.md"
requires-python = ">=3.10, <3.14"
license = { text = "MIT" }
[project.optional-dependencies]
loaders = [
"tonic",
"torchvision",
"scikit-learn",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.0",
]
[tool.uv.sources]
torchvision = { index = "pytorch-cpu" }
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.7.1",
"mkdocstrings[python]>=1.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/spyx"]