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]
build-backend = 'setuptools.build_meta'
requires = ["setuptools >= 68.0"]
[project]
name = "bitstruct"
description = """This module performs conversions between Python values \
and C bit field structs represented as Python \
byte strings."""
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
keywords = [
"bit field",
"bit parsing",
"bit unpack",
"bit pack",
]
authors = [
{ name = "Erik Moqvist", email = "erik.moqvist@gmail.com" },
{ name = "Ilya Petukhov" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Documentation = "https://bitstruct.readthedocs.io/en/latest/"
Issues = "https://github.com/eerimoq/bitstruct/issues"
Source = "https://github.com/eerimoq/bitstruct"
Homepage = "https://github.com/eerimoq/bitstruct"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "bitstruct.__version__"}
[tool.setuptools.package-data]
"*" = [
"**/py.typed",
"**.pyi",
]
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest -v --assert=plain {project}/tests"
build-frontend = "build"
skip = "pp*"
|