-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.96 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
[build-system]
requires = ["setuptools>=77", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "zlib-ng"
dynamic = ["version"]
description = "Drop-in replacement for zlib and gzip modules using zlib-ng"
license="PSF-2.0"
keywords=["zlib-ng", "zlib", "compression", "deflate", "gzip"]
authors = [{name = "Leiden University Medical Center"},
{email = "r.h.p.vorderman@lumc.nl"}]
readme = "README.rst"
requires-python = ">=3.9" # Because of setuptools version
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: C",
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Archiving :: Compression",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
urls.homepage = "https://github.com/pycompression/python-zlib-ng"
urls.documentation = "https://python-zlib-ng.readthedocs.io"
[tool.setuptools_scm]
version_file = "src/zlib_ng/_version.py"
[tool.setuptools.packages.find]
where = ["src"]
include = ["zlib_ng"]
[tool.setuptools.package-data]
zlib_ng = ['*.pyi', 'py.typed', 'zlib-ng/LICENSE', 'zlib-ng/README.md']
[tool.setuptools.exclude-package-data]
zlib_ng = [
"*.c",
"*.h",
"zlib-ng/*/*",
"zlib-ng/*in",
"zlib-ng/.*",
"zlib-ng/*.map",
"zlib-ng/INDEX.md",
"zlib-ng/CMakeLists.txt",
"zlib-ng/PORTING.md",
"zlib-ng/configure",
"zlib-ng/*.empty",
"zlib-ng/FAQ.zlib",
]