-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (32 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
[project]
name = "nirtorch"
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 = [ "torch", "nir" ]
dynamic = ["version"] # Version number read from __init__.py
[tool.setuptools.dynamic]
version = {attr = "nirtorch.__version__"}