-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
104 lines (88 loc) · 2.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
build-backend = "scikit_build_core.build"
requires = ["setuptools", "wheel", "scikit-build-core>=0.10.1", "pybind11"]
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
[tool.scikit-build.ninja]
make-fallback = false
minimum-version = "1.11"
[tool.scikit-build.cmake]
build-type = "Release"
minimum-version = "3.26.1"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
regex = 'VERSION = "(?P<value>\d+\.\d+\.\d+)"'
input = "pyclesperanto/_version.py"
[tool.scikit-build.sdist]
exclude = [".flake8", ".git*", "*.yaml", "*.ipynb", "*.yml", "docs"]
[project]
authors = [
{ name = "Stephane Rigaud", email = "[email protected]" },
{ name = "Robert Haase", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy",
"toolz",
"matplotlib",
"toml",
]
description = "GPU-accelerated image processing in python using OpenCL"
name = "pyclesperanto"
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Documentation = "https://clesperanto.github.io/pyclesperanto/"
Examples = "https://clesperanto.github.io/pyclesperanto/demos/"
Issues = "https://github.com/clEsperanto/pyclesperanto/issues"
Source = "https://github.com/clEsperanto/pyclesperanto/"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
[tool.cibuildwheel]
build = [
"cp38-*",
"cp39-*",
"cp310-*",
"cp311-*",
"cp312-*",
"cp313-*",
]
skip = [
"cp27-*",
"cp36*",
"cp37*",
"pp*",
"*-win32",
"*-musllinux*",
"*_i686",
"*_universal2",
]
build-frontend = "build"
build-verbosity = 1
test-command = "pytest {project}/tests/test_import.py"
test-requires = ["pytest", "pytest-cov", "pytest-benchmark", "scikit-image"]
[tool.cibuildwheel.linux]
before-all = ["bash {package}/scripts/build-opencl-linux.sh"]
repair-wheel-command = "auditwheel show {wheel} && auditwheel repair --lib-sdir .libs -w {dest_dir} {wheel}"
[tool.cibuildwheel.windows]
before-all = "bash {package}/scripts/build-opencl-windows.sh"
environment = { SKBUILD_CMAKE_ARGS = "-DOpenCL_LIBRARIES:FILEPATH='C:/Program Files/OpenCL-ICD-Loader/lib/OpenCL.lib';-DOpenCL_INCLUDE_DIRS:PATH='C:/Program Files/OpenCL-ICD-Loader/include/'" }
[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET = '10.14' }
[tool.isort]
profile = "black"
[project.entry-points."bia_bob_plugins"]
plugin_pyclesperanto = "pyclesperanto._bia_bob_plugins:list_bia_bob_plugins"