-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [
"setuptools>=77.0.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["spikingjelly*"]
[project]
name = "spikingjelly"
version = "0.0.0.0.15"
description = "A deep learning framework for SNNs built on PyTorch."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "PKU MLG, PCL, and other contributors"},
{email = "fwei@pku.edu.cn"},
{email = "chyq@pku.edu.cn"},
{email = "yfhuang@pku.edu.cn"}
]
requires-python = ">=3.11"
dependencies = [
"torch>=2.2.0",
"torchvision",
"torchaudio",
"tensorboard",
"numpy",
"scipy",
"einops",
"tqdm",
"matplotlib",
"SciencePlots",
"h5py",
"pydantic",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
license-files = ["LICEN[CS]E*"]
[project.optional-dependencies]
cupy11 = ["cupy-cuda11x"]
cupy12 = ["cupy-cuda12x"]
triton = ["triton>=3.3.1"]
nir = ["nir", "nirtorch"]
lightning = ["lightning", "jsonargparse[signatures]"]
[dependency-groups]
dev = [
"pytest",
"pyclean",
"pydata-sphinx-theme>=0.16.1",
"sphinx>=8.0.0",
]
[project.urls]
Homepage = "https://github.com/fangwei123456/spikingjelly"
Documentation = "https://spikingjelly.readthedocs.io/"
[tool.ruff]
src = ["spikingjelly", "test"]
exclude = ["*.ipynb"]
line-length = 88
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"