-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "urti"
dynamic = ["version"]
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
]
license = { text = "BSD" }
description = "Python library for the Great Scott Gadgets URTI mainboard"
urls = { Source = "https://greatscottgadgets.com/urti" }
readme = "README.md"
dependencies = [
"amaranth @ git+https://github.com/amaranth-lang/[email protected]",
"amaranth-soc @ git+https://github.com/amaranth-lang/amaranth-soc",
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards",
"amaranth-stdio @ git+https://github.com/amaranth-lang/amaranth-stdio",
"apollo_fpga @ git+https://github.com/greatscottgadgets/apollo.git",
"luna-usb @ git+https://github.com/mndza/luna@amaranth-from-git",
"pyusb",
"future",
"pyfwup>=0.2",
"tqdm",
"tabulate",
"prompt_toolkit",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
urti = "src"
[tool.setuptools.package-data]
"urti.shared" = ["*.toml"]