-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 897 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (33 loc) · 897 Bytes
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
[build-system]
requires = ["setuptools>=42",
"wheel",
"numpy>=2.1",
"pybind11~=3.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "tfc"
version = "1.4.0"
requires-python = ">=3.11"
readme = "README.md"
dynamic = ["dependencies", "classifiers", "authors", "license", "description"]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.cibuildwheel]
before-build = "pip install setuptools wheel numpy pybind11 mypy"
skip = "*-musllinux*"
manylinux-x86_64-image = "manylinux_2_28"
test-requires = ["pytest"]
test-command = "pytest {package}/tests"
test-skip = "*-macosx_arm64"
[tool.cibuildwheel.linux]
before-all = "yum install -y ninja-build"
archs = ["x86_64"]
[tool.cibuildwheel.macos]
archs = ["arm64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]
skip = "cp314t-*"
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"