forked from sqlmath/sqlmath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 1.58 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
59
60
61
62
63
64
65
[build-system]
requires = [
"pycodestyle == 2.14.0",
"ruff >= 0.15.1",
]
build-backend = "setup"
backend-path = ["."]
# https://peps.python.org/pep-0621/#example
[project]
name = "sqlmath"
version = "2026.3.31"
description = "sqlite for datascience"
authors = [{name = "Kai Zhu"}]
maintainers = []
requires-python = ">=3.10"
#
dependencies = []
license = {text = "MIT"}
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
[project.scripts]
# spam-cli = "spam:main_cli"
[project.urls]
Homepage = "https://github.com/sqlmath/sqlmath"
Changelog = "https://github.com/sqlmath/sqlmath/blob/master/CHANGELOG.md"
# to disable scanning PEP 420 namespaces (true by default)
# namespaces = false
# https://cibuildwheel.readthedocs.io/en/stable/options/
[tool.cibuildwheel]
archs = ["native"]
build = ["cp*-*"]
build-verbosity = "1"
manylinux-x86_64-image = "manylinux_2_28"
skip = [
"*-musllinux*",
# Skip building free-threaded compatible wheels on Windows
"*cp3*t-win*",
]
test-command = [
"python --version",
"cp {project}/test.py .",
"python test.py --verbose",
]
[tool.sqlmath]
shCiPublishPypi = 1