-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
55 lines (49 loc) · 1.36 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
55
[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.7"
license = { text = "MIT" }
keywords = [
"bit field",
"bit parsing",
"bit unpack",
"bit pack",
]
authors = [
{ name = "Erik Moqvist", email = "[email protected]" },
{ name = "Ilya Petukhov" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"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*"