-
Notifications
You must be signed in to change notification settings - Fork 171
/
pyproject.toml
61 lines (52 loc) · 1.56 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
[build-system]
requires = ["setuptools>=64", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "luna-usb"
description = "Amaranth HDL framework for FPGA-based USB solutions"
license = { text = "BSD" }
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Great Scott Gadgets", email = "dev@greatscottgadgets.com"},
]
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)",
]
dynamic = ["version"]
dependencies = [
"libusb1>1.9.2",
"pyserial>=3.5",
"pyusb>1.1.1",
"pyvcd>=0.2.4",
"amaranth~=0.4.0",
"usb-protocol~=0.9.1",
]
[project.optional-dependencies]
dev = [
"apollo_fpga",
"prompt-toolkit>3.0.16",
]
[project.urls]
Documentation = "https://luna.readthedocs.io"
Repository = "https://github.com/greatscottgadgets/luna"
Issues = "https://github.com/greatscottgadgets/luna/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["luna*"]
[tool.pdm.scripts]
test.cmd = "python -m unittest discover -t . -s tests -v"
[tool.setuptools-git-versioning]
enabled = true
starting_version = "0.1.0"