forked from PGI15/snnax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 1003 Bytes
/
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
[build-system]
# AVOID CHANGING REQUIRES: IT WILL BE UPDATED BY PYSCAFFOLD!
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "no-guess-dev"
[project]
name = "snnax"
version = "0.0.1"
authors = [
{name="Jamie Lohoff", email="[email protected]"},
{name="Jan Finkbeiner", email="[email protected]"},
{name="Emre Neftci", email="[email protected]"},
]
description = "A library for spiking neural networks in JAX."
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/PGI15/snnax"
Issues = "https://github.com/PGI15/snnax/issues"
Documentation = "https://pgi15.github.io/snnax/layers"