-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
52 lines (46 loc) · 1.4 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 = "apollo-fpga"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"}
]
license = { text = "BSD" }
description = "Python library and host tools for Apollo FPGA debug controllers."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
]
dependencies = [
"importlib_resources; python_version<'3.9'",
"pyusb>1.1.1",
"pyvcd>=0.2.4",
"prompt-toolkit>3.0.16",
"pyxdg>=0.27",
"deprecation>=2.1.0",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/greatscottgadgets/apollo"
issues = "https://github.com/greatscottgadgets/apollo/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["apollo_fpga*"]
[project.scripts]
apollo = "apollo_fpga.commands.cli:main"
[tool.pdm.scripts]
test.cmd = "python -m unittest discover -p jtag_svf.py -v"
[tool.setuptools-git-versioning]
enabled = true
starting_version = "1.0.0"