-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
75 lines (64 loc) · 2.26 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
[project]
# See: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
name = "questdb"
requires-python = ">=3.8"
version = "2.0.3"
description = "QuestDB client library for Python"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Programming Language :: Rust",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering",
]
[project.license]
text = "Apache License 2.0"
[[project.authors]]
name = "Adam Cimarosti"
email = "[email protected]"
[project.optional-dependencies]
publish = ["twine", "wheel"]
ci = ["cibuildwheel"]
dataframe = ["pandas", "pyarrow", "numpy"]
[project.urls]
Homepage = "https://questdb.io/"
Changelog = "https://py-questdb-client.readthedocs.io/en/latest/changelog.html"
Documentation = "https://py-questdb-client.readthedocs.io/en/latest/index.html"
Source = "https://github.com/questdb/py-questdb-client/"
Tracker = "https://github.com/questdb/py-questdb-client/issues"
Community = "http://community.questdb.io"
[build-system]
requires = [
# Setuptools 18.0 and above properly handles Cython extensions.
"setuptools>=45.2.0",
"wheel>=0.34.2",
"cython>=0.29.24",
]
[tool.cibuildwheel]
# See: https://cibuildwheel.readthedocs.io/en/stable/options/#configuration-file
build-verbosity = 3
before-build = "python {project}/install_rust.py"
before-test = "python {project}/ci/pip_install_deps.py"
test-command = "python {project}/test/test.py -v"
skip = [
# No 32-bit musl C native tool chain for Rust.
# There's a tier 2 target for it, but it would need cross-compiling.
"*-musllinux_i686",
]
# [tool.cibuildwheel.windows]
# # This doens't work yet. Windows/ARM64 support is experimental.
# archs = "auto ARM64"
# [tool.cibuildwheel.linux]
# # Build wheels for the native platform (i.e. x86) as well as an emulated
# # build for aarch64.
# archs = "auto aarch64"
[tool.cibuildwheel.environment]
SETUP_DO_GIT_SUBMODULE_INIT = "1"