-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.72 KB
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
[build-system]
requires = ["scikit-build-core>=0.10", "nanobind>=2.0"]
build-backend = "scikit_build_core.build"
[project]
name = "bioimage-cpp"
dynamic = ["version"]
description = "Dependency-light C++ bioimage analysis algorithms with Python bindings"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["numpy"]
license = { text = "MIT" }
authors = [
{ name = "bioimage-cpp contributors" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Image Processing",
]
[project.urls]
Homepage = "https://github.com/computational-cell-analytics/bioimage-cpp"
Repository = "https://github.com/computational-cell-analytics/bioimage-cpp"
Issues = "https://github.com/computational-cell-analytics/bioimage-cpp/issues"
[project.optional-dependencies]
test = ["pytest", "pooch", "scipy"]
data = ["pooch"]
[tool.scikit-build]
cmake.version = ">=3.21"
cmake.build-type = "Release"
wheel.packages = ["src/bioimage_cpp"]
sdist.exclude = [
"pypi-release.txt",
"dist/",
"wheelhouse/",
"_skbuild/",
"build/",
"*.egg-info/",
".pytest_cache/",
"__pycache__/",
]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "src/bioimage_cpp/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]