-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (27 loc) · 1013 Bytes
/
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
[build-system]
requires = ["scikit-build-core >=0.10", "nanobind >=2.2.0"]
build-backend = "scikit_build_core.build"
[project]
name = "tdjson"
version = "1.8.45"
description = "High-performance Python binding for TDLib JSON interface. Works on Linux x86_64, includes pre-built TDLib, and outperforms python ctypes"
readme = "README.md"
authors = [{ name = "AYMEN Mohammed", email = "[email protected]" }]
license = { text = "MIT" }
requires-python = ">=3.9"
keywords = ["tdlib", "telegram", "python-binding", "high-performance", "linux"]
[project.urls]
Source = "https://github.com/AYMENJD/tdjson"
Tracker = "https://github.com/AYMENJD/tdjson/issues"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
wheel.py-api = "cp312"
[tool.cibuildwheel]
build-verbosity = 1
build = "cp39* cp310* cp311* cp312* cp313*"
enable = ["cpython-freethreading"]
skip = "*musllinux*"
archs = ["x86_64"]
[tool.cibuildwheel.linux]
before-all = ".github/workflows/before-all.sh"
manylinux-x86_64-image = "manylinux2014"