-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
42 lines (38 loc) · 1.11 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "python-lzo"
version = "1.16"
description = "Python bindings for the LZO data compression library"
readme = "README.md"
requires-python = ">=2.6"
authors = [
{name = "Markus F.X.J. Oberhumer", email = "[email protected]"},
]
maintainers = [
{name = "Joshua D. Boyd", email = "[email protected]"},
]
keywords = ["lzo", "compression"]
license = {text = "GNU General Public License v2 (GPLv2)"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving :: Compression",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/jd-boyd/python-lzo"
"Bug Tracker" = "https://github.com/jd-boyd/python-lzo/issues"
[tool.cibuildwheel]
archs = ["all"]
build-verbosity = 3
test-requires = "pytest"
test-command = "pytest {package}/tests"
test-skip = "*-win_arm64"