-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.27 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "audioop-lts"
description = "LTS Port of Python audioop"
requires-python = ">=3.13"
version = "0.2.1"
readme = "README.md"
license = { text = "PSF-2.0" }
maintainers = [{ name = "AbstractUmbra", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/AbstractUmbra/audioop"
[tool.setuptools]
packages = ["audioop"]
[tool.setuptools.exclude-package-data]
# Keep just the shared object when packing a wheel, not the C source code.
audioop = ["*.c", "*.h"]
[tool.pyright]
pythonVersion = "3.13"
typeCheckingMode = "strict"
include = ["audioop"]
ignore = [
"audioop/__init__.py", # Pyright can't see the shared object being imported from.
]
reportPrivateUsage = "none"
reportUnnecessaryTypeIgnoreComment = "warning"
# configuration common between all platforms, rest is defined in the GH Actions workflow
[tool.cibuildwheel]
test-command = "python {project}/tests/test_audioop.py"