-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 1002 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
32
33
[build-system]
requires = ["setuptools"]
[project]
name = "jaxsnn"
authors = [
{ name="Electronic Vision(s)", email="[email protected]" },
]
description = "jaxsnn is an event-based approach to machine-learning-inspired training and simulation of SNNs, including support for neuromorphic backends (BrainScaleS-2)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"jax==0.4.13; python_version=='3.8'",
"jaxlib==0.4.13; python_version=='3.8'",
"jax>=0.4.13,<=0.4.23; python_version>'3.8'",
"jaxlib>=0.4.13,<=0.4.23; python_version>'3.8'",
"scipy<1.13; python_version>'3.8'",
"optax>=0.1.4",
"tree-math>0.1.0",
"matplotlib",
]
[project.urls]
"Homepage" = "https://github.com/electronicvisions/jaxsnn"
"Bug Tracker" = "https://github.com/electronicvisions/jaxsnn/issues"
[tool.setuptools.packages.find]
where = ["src/pyjaxsnn"]
include = ["jaxsnn*"]