-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch]
version.source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["fpga"]
[project]
dynamic = ["version"]
name = "neuro_fpga"
description = "Neuromorphic FPGA"
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Keegan Dent", email = "keegandent@gmail.com" },
]
maintainers = [
{ name = "Keegan Dent", email = "keegandent@gmail.com" },
]
classifiers = [
"Private :: Do Not Upload",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Hardware",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
dependencies = [
"bitstruct",
"dash",
"dash-bootstrap-components",
"edalize",
"framework",
"numpy",
"platformdirs",
"python-periphery",
"tqdm",
"waitress",
]
[project.scripts]
nethash = "fpga.scripts.nethash:main"
nethdl = "fpga.scripts.nethdl:main"
packet-vis = "fpga.scripts.packet_vis:main"
uart-loop = "fpga.scripts.uart_loop:main"
[project.optional-dependencies]
test = [
"cocotb ~= 1.8.0",
"cocotb-test",
]
dev = [
"black",
"flake8",
"isort",
]
[project.urls]
"Homepage" = "https://gitlab.com/keegandent/neuro_fpga/"
"Bug Tracker" = "https://gitlab.com/keegandent/neuro_fpga/issues"