-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.11 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
[tool.poetry]
name = "liknorm"
version = "2.0.0"
description = "Liknorm Python wrapper"
license = "MIT"
authors = ["Danilo Horta <[email protected]>"]
readme = "README.md"
repository = "https://github.com/limix/liknorm-py"
homepage = "https://github.com/limix/liknorm-py"
keywords = ["liknorm", "integration"]
classifiers = ["License :: OSI Approved :: MIT License"]
include = [
{ path = "liknorm/*.so", format = "wheel" },
{ path = "liknorm/*.pyd", format = "wheel" },
{ path = "liknorm/lib/lib*", format = "wheel" },
{ path = "build_ext.py", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.10"
cffi = "^1.17"
[tool.poetry.build]
script = "build_ext.py"
generate-setup-file = false
[tool.poetry.group.dev.dependencies]
pytest = "^8.2"
gitpython = "^3.1.43"
[tool.pytest.ini_options]
pythonpath = ["."]
[build-system]
requires = [
"poetry-core",
"cffi",
"GitPython",
"setuptools;python_version>='3.12'",
]
build-backend = "poetry.core.masonry.api"
[tool.cibuildwheel]
skip = ["*i686", "*-win32"]
[tool.cibuildwheel.linux]
archs = ["auto", "aarch64"]
[tool.cibuildwheel.windows]
archs = ["auto64"]