forked from neuromorphs/NIR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.64 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
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
[project]
name = "nir"
description = "Neuromorphic Intermediate Representation"
authors = [
{ name = "Steven Abreu", email = "[email protected]" },
{ name = "Felix Bauer", email = "[email protected]" },
{ name = "Jason Eshraghian", email = "[email protected]" },
{ name = "Matthias Jobst", email = "[email protected]" },
{ name = "Gregor Lenz", email = "[email protected]" },
{ name = "Jens Egholm Pedersen", email = "[email protected]" },
{ name = "Sadique Sheik", email = "[email protected]" },
]
readme = "README.md"
keywords = ["neuromorphic", "intermediate", "representation"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [ "numpy", "h5py" ]
dynamic = ["version"] # Version number read from __init__.py
requires-python = ">=3.9"
[project.urls]
homepage = "https://github.com/neuromorphs/nir"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools_scm]
[tool.setuptools.packages]
find={include = ["nir*"]}
[tool.ruff]
line-length = 100
lint.per-file-ignores = {"docs/conf.py" = ["E402"]}
exclude = ["paper/"]
extend-exclude = ["*.ipynb"]