forked from greatscottgadgets/luna
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (45 loc) · 1.32 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
[build-system]
requires = ["setuptools>=64", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "usb2-highspeed-core"
description = "USB2 highspeed core written in amaranth HDL"
license = { text = "BSD" }
readme = "README.md"
requires-python = ">=3.8"
version = "0.0.1"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
{name = "Hans Baier", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Security",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
]
dependencies = [
"libusb1>1.9.2",
"pyserial>=3.5",
"pyusb>1.1.1",
"pyvcd>=0.2.4",
"amaranth<0.5",
]
[project.optional-dependencies]
dev = [
"apollo_fpga",
"prompt-toolkit>3.0.16",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["luna*"]
[tool.pdm.scripts]
test.cmd = "python -m unittest discover -t . -s tests -v"