2019-01-16 19:42:09 +03:00
|
|
|
[build-system]
|
2020-02-13 00:49:21 +03:00
|
|
|
requires = [
|
|
|
|
"setuptools",
|
2021-06-10 12:03:30 +03:00
|
|
|
"cython>=0.25,<3.0",
|
2020-02-13 00:49:21 +03:00
|
|
|
"cymem>=2.0.2,<2.1.0",
|
|
|
|
"preshed>=3.0.2,<3.1.0",
|
|
|
|
"murmurhash>=0.28.0,<1.1.0",
|
2024-09-11 16:56:33 +03:00
|
|
|
"thinc>=8.3.0,<8.4.0",
|
|
|
|
"numpy>=2.0.0,<2.1.0; python_version < '3.9'",
|
|
|
|
"numpy>=2.0.0,<2.1.0; python_version >= '3.9'",
|
2020-02-13 00:49:21 +03:00
|
|
|
]
|
2019-01-16 19:42:09 +03:00
|
|
|
build-backend = "setuptools.build_meta"
|
2023-06-14 18:48:41 +03:00
|
|
|
|
2024-08-20 13:15:05 +03:00
|
|
|
[tool.cibuildwheel]
|
|
|
|
build = "*"
|
2024-09-14 01:12:49 +03:00
|
|
|
skip = "pp* cp36* cp37* cp38* *-win32 *i686*"
|
2024-08-20 13:15:05 +03:00
|
|
|
test-skip = ""
|
|
|
|
free-threaded-support = false
|
|
|
|
|
|
|
|
archs = ["native"]
|
|
|
|
|
|
|
|
build-frontend = "default"
|
|
|
|
config-settings = {}
|
|
|
|
dependency-versions = "pinned"
|
|
|
|
environment = { PIP_CONSTRAINT = "build-constraints.txt" }
|
|
|
|
|
|
|
|
environment-pass = []
|
|
|
|
build-verbosity = 0
|
|
|
|
|
|
|
|
before-all = "curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain stable"
|
|
|
|
before-build = "pip install -r requirements.txt && python setup.py clean"
|
|
|
|
repair-wheel-command = ""
|
|
|
|
|
|
|
|
test-command = ""
|
|
|
|
before-test = ""
|
|
|
|
test-requires = []
|
|
|
|
test-extras = []
|
|
|
|
|
|
|
|
container-engine = "docker"
|
|
|
|
|
|
|
|
manylinux-x86_64-image = "manylinux2014"
|
|
|
|
manylinux-i686-image = "manylinux2014"
|
|
|
|
manylinux-aarch64-image = "manylinux2014"
|
|
|
|
manylinux-ppc64le-image = "manylinux2014"
|
|
|
|
manylinux-s390x-image = "manylinux2014"
|
|
|
|
manylinux-pypy_x86_64-image = "manylinux2014"
|
|
|
|
manylinux-pypy_i686-image = "manylinux2014"
|
|
|
|
manylinux-pypy_aarch64-image = "manylinux2014"
|
|
|
|
|
|
|
|
musllinux-x86_64-image = "musllinux_1_2"
|
|
|
|
musllinux-i686-image = "musllinux_1_2"
|
|
|
|
musllinux-aarch64-image = "musllinux_1_2"
|
|
|
|
musllinux-ppc64le-image = "musllinux_1_2"
|
|
|
|
musllinux-s390x-image = "musllinux_1_2"
|
|
|
|
|
|
|
|
[tool.cibuildwheel.linux]
|
|
|
|
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
|
|
|
|
|
|
|
|
[tool.cibuildwheel.macos]
|
|
|
|
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
|
|
|
|
|
|
|
|
[tool.cibuildwheel.windows]
|
|
|
|
|
|
|
|
[tool.cibuildwheel.pyodide]
|
|
|
|
|
|
|
|
|
2023-06-14 18:48:41 +03:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|