-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.93 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
[tool.cibuildwheel]
test-command = [
"python {package}/sanity-check.py",
"python -m pip install -U pip",
"pip install -r {package}/test-requirements.txt",
"{package}/build_judy.sh",
"(cd {package}/tests && ./compile.sh)",
"(cd {package}/tests && ./a.out --unit-test)",
"(cd {package} && PYTHONPATH=$(pwd) python -m twisted.trial tests.python_api)",
]
# temporarily dropping pypy until we can figure out the string unit-test failure
build = [ "cp39-*", "cp310-*", "cp311-*" , "cp312-*" , "cp313-*"]
build-verbosity = 1
[tool.setuptools.packages]
find = {namespaces = false, exclude = [ "pointless.tests" ]}
[tool.cibuildwheel.linux]
archs = ["auto64", "aarch64"]
environment = "CC=gcc"
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
environment = "CC=clang"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
environment = "CC=gcc"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pointless"
version = "1.0.23"
description = "A read-only relocatable data structure for JSON like data, with C and Python APIs"
authors = [{ name = "Arni Mar Jonsson", email = "[email protected]" }]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX",
"Programming Language :: C",
"Programming Language :: Python",
"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 :: Database",
"Topic :: Software Development :: Libraries"
]
[project.urls]
"Source Code" = "https://github.com/arnimarj/py-pointless"