-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
91 lines (80 loc) · 1.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = [
"setuptools >= 61.0",
"scmver[toml] >= 1.7",
]
build-backend = "setuptools.build_meta"
[project]
name = "zopflipy"
description = "A Python bindings for Zopfli"
readme = "README.rst"
authors = [
{name = "Akinori Hattori", email = "hattya@gmail.com"},
]
license = {text = "ALv2"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
]
requires-python = ">= 3.9"
dynamic = [
"version",
]
[project.urls]
Homepage = "https://github.com/hattya/zopflipy"
[tool.setuptools]
include-package-data = false
packages = [
"zopfli",
]
[tool.setuptools.package-data]
zopfli = [
"py.typed",
"*.pyi",
]
[tool.scmver]
spec = "micro"
write-to = "zopfli/__version__.py"
fallback = {attr = "__version__:version", path = "zopfli"}
[tool.coverage.run]
branch = true
[tool.coverage.report]
partial_branches = [
"pragma: no partial",
"if sys.version_info",
]
[tool.mypy]
disable_error_code = [
"attr-defined",
"misc",
"override",
]
strict = true
[tool.ruff]
line-length = 160
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"UP",
"B0",
"C4",
]
ignore = [
"E74",
]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true