forked from norse/norse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.79 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "norse"
description = "A library for deep learning with spiking neural networks"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Jens E. Pedersen", email = "[email protected]" },
{ name = "Christian Pehle", email = "[email protected]" },
]
maintainers = [{ name = "Jens E. Pedersen", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy",
"torch>=2.2.0",
"torchvision>=0.15.0",
"nir",
"nirtorch",
]
keywords = [
"spiking neural networks",
"deep learning",
"neural networks",
"machine learning",
]
dynamic = ["version"] # Version number read from setuptools_scm
[project.urls]
Homepage = "https://github.com/norse/norse"
Documentation = "https://norse.github.io/norse"
Issues = "https://github.com/norse/norse/issues"
[tool.setuptools.packages.find]
exclude = ["publish*", "spack*"]
[tool.setuptools_scm]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
exclude = [
'^norse/torch/models/.*',
'^norse/benchmark/.*',
'^norse/task/.*',
]