-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
54 lines (46 loc) · 1.67 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
[build-system]
requires = ["setuptools>=64", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "usb-protocol"
description = "Python library providing utilities, data structures, constants, parsers, and tools for working with the USB protocol."
license = { text = "BSD" }
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Great Scott Gadgets", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Security",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
]
dependencies = [
"construct~=2.10"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://python-usb-protocol.readthedocs.io"
Repository = "https://github.com/greatscottgadgets/python-usb-protocol"
Issues = "https://github.com/greatscottgadgets/python-usb-protocol/issues"
[tool.setuptools.package-dir]
usb_protocol = "usb_protocol"
[tool.setuptools-git-versioning]
enabled = true
starting_version = "0.9.0"
[tool.pdm.scripts]
test.cmd = "python -m unittest discover -t . -v"