-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.5 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
[build-system]
requires = [
"scikit-build-core==0.11.*",
"numpy>=2.0.0; python_version >= '3.9'",
"numpy>=1.21.0,<2.0.0; python_version < '3.9'"
]
build-backend = "scikit_build_core.build"
[project]
name = "pyxmipp3"
dynamic = ["version"]
authors = [
{ name = "Oier Lauzirika Zarrabeitia", email = "oierlauzi@bizkaia.eu" },
]
description = "Minimal version of xmipp3 package with Python bindings"
classifiers = [
"Topic :: Scientific/Engineering :: Image Processing",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = "GPL-3.0-only"
requires-python = ">=3.7"
dependencies = [
"numpy>=1.21.0"
]
[project.urls]
Homepage = "https://github.com/I2PC/pyxmipp3"
Issues = "https://github.com/I2PC/pyxmipp3/issues"
[tool.scikit-build]
cmake.version = ">=3.18"
cmake.args = []
cmake.verbose = false
cmake.build-type = "Release"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "VERSION"
regex = "(?P<value>\\d+\\.\\d+\\.\\d+)"