-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools>=61", "wheel", "pybind11>=2.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sanafe"
version = "2.2.6"
description = "SANA-FE: Simulating Advanced Neuromorphic Architectures for Fast Exploration"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "James Boyle", email = "james.boyle@utexas.edu" },
]
license = { text = "GPL-3.0" }
dependencies = []
[project.optional-dependencies]
data = ["pandas"]
viz = ["pandas", "matplotlib", "numpy"]
all = ["pandas", "matplotlib", "numpy"]
[project.urls]
Homepage = "https://github.com/SLAM-Lab/SANA-FE"
Documentation = "https://sana-fe.readthedocs.io"
Repository = "https://github.com/SLAM-Lab/SANA-FE"
[tool.setuptools]
# Tell setuptools to find packages automatically. find-packages with no args
# is equivalent to find_packages() in setup.py.
packages = { find = {} }
[tool.setuptools.package-data]
sanafe = ["examples/*.yaml", "examples/dvs_challenge.npz"]
[tool.cibuildwheel]
skip = ["*-win32", "*_i686"]