|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=64", "setuptools-git-versioning<2"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "usb-protocol" |
| 7 | +description = "Python library providing utilities, data structures, constants, parsers, and tools for working with the USB protocol." |
| 8 | +license = { text = "BSD" } |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.8" |
| 11 | +authors = [ |
| 12 | + { name = "Great Scott Gadgets", email = "[email protected]"}, |
| 13 | +] |
| 14 | + |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 4 - Beta", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.8", |
| 19 | + "Programming Language :: Python :: 3.9", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "License :: OSI Approved :: BSD License", |
| 24 | + "Operating System :: OS Independent", |
| 25 | + "Natural Language :: English", |
| 26 | + "Environment :: Console", |
| 27 | + "Environment :: Plugins", |
| 28 | + "Intended Audience :: Developers", |
| 29 | + "Intended Audience :: Science/Research", |
| 30 | + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", |
| 31 | + "Topic :: Security", |
| 32 | + "Topic :: System :: Hardware :: Universal Serial Bus (USB)", |
| 33 | +] |
| 34 | + |
| 35 | +dependencies = [ |
| 36 | + "construct~=2.10" |
| 37 | +] |
| 38 | + |
| 39 | +dynamic = ["version"] |
| 40 | + |
| 41 | +[project.urls] |
| 42 | +Documentation = "https://python-usb-protocol.readthedocs.io" |
| 43 | +Repository = "https://github.com/greatscottgadgets/python-usb-protocol" |
| 44 | +Issues = "https://github.com/greatscottgadgets/python-usb-protocol/issues" |
| 45 | + |
| 46 | +[tool.setuptools.package-dir] |
| 47 | +usb_protocol = "usb_protocol" |
| 48 | + |
| 49 | +[tool.setuptools-git-versioning] |
| 50 | +enabled = true |
| 51 | +starting_version = "0.9.0" |
| 52 | + |
| 53 | +[tool.pdm.scripts] |
| 54 | +test.cmd = "python -m unittest discover -t . -v" |
0 commit comments