-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (62 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
74 lines (62 loc) · 1.95 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = [
"setuptools<72.2.0", # pp38 fails with higher setuptools
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "texture2ddecoder"
authors = [{ name = "Rudolf Kolbe", email = "rkolbe96@gmail.com" }]
description = "a python wrapper for Perfare's Texture2DDecoder"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
keywords = ["astc", "texture"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/K0lb3/texture2ddecoder"
"Bug Tracker" = "https://github.com/K0lb3/texture2ddecoder/issues"
[tool.setuptools.dynamic]
version = { attr = "texture2ddecoder.__version__" }
[tool.cibuildwheel]
build = "cp38-* cp39-* cp310-* cp311-* pp3*"
enable = ["pypy", "pypy-eol"]
[tool.cibuildwheel.linux]
archs = ["x86_64", "i686", "aarch64", "ppc64le", "s390x", "armv7l"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.cibuildwheel.windows]
archs = ["AMD64", "x86", "ARM64"]
skip = ["cp38-win_arm64"]
# tests
[project.optional-dependencies]
tests = ["pytest >= 8.3.3", "pillow >=10.4.0"]
[tool.ruff]
include = [
"pyproject.toml",
"texture2ddecoder/*.py",
"texture2ddecoder/*.pyi",
"tests/*.py",
]
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
testpaths = ["tests"]