-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 2.37 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (88 loc) · 2.37 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
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
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8",
"scikit-build-core>=0.10",
#"ipp-devel==2021.12.*", # PyPI conflicts with conda package
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
minimum-version = "build-system.requires"
cmake.version = ">=3.16"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["Wrappers/Python/cil/version.py"]
sdist.exclude = ["scripts", "docs", "Wrappers/Python/data", "Wrappers/Python/test", ".*"]
[tool.scikit-build.wheel.packages]
cil = "Wrappers/Python/cil"
[tool.scikit-build.cmake.define]
CIL_FORCE_IPP = {env="CIL_FORCE_IPP", default="OFF"}
[tool.setuptools]
package-dir = {"" = "Wrappers/Python"}
[tool.setuptools.packages.find]
where = ["Wrappers/Python"]
include = ["cil", "cil.*"]
exclude = ["data", "test"]
[project.urls]
#homepage = "https://ccpi.ac.uk/cil"
homepage = "https://tomographicimaging.github.io/CIL"
documentation = "https://tomographicimaging.github.io/CIL/nightly"
repository = "https://github.com/TomographicImaging/CIL"
changelog = "https://github.com/TomographicImaging/CIL/blob/master/CHANGELOG.md"
[project]
name = "cil"
dynamic = ["version"]
description = "Core Imaging Library"
license = {text = "Apache-2.0"}
maintainers = [{name="CIL developers", email="tomography+cil@stfc.ac.uk"}]
requires-python = ">=3.10"
readme = "README.md"
keywords = ["tomography", "optimisation"]
dependencies = [
#"cil-data>=22", # missing from PyPI
"h5py",
#"ipp==2021.12.*", # PyPI conflicts with conda package
"numba",
"numpy>=1.23,<3",
"pillow",
"pywavelets",
"scipy>=1.4.0",
"tqdm",
"packaging",
]
[project.optional-dependencies]
plugins = [
"ipywidgets",
"dxchange>=0.2.1",
"olefile>=0.46",
#"tomophantom>=3.0.3", # [linux] # missing from PyPI
]
gpu = [
"astra-toolbox>=2,<3", # [not osx]
#"tigre>=3.1.3,<4", # missing from PyPI
]
[dependency-groups]
test = [
#"ccpi-regulariser>=24", # [not osx] # missing from PyPI
"cvxpy",
"matplotlib-base>=3.3",
"scikit-image",
"unittest-parametrize",
"wget",
"zenodo_get>=1.6",
]
docs = [
"jinja2",
#"pydata-sphinx-theme",
"recommonmark",
"sphinx",
"sphinx_rtd_theme",
"sphinx-autobuild",
"sphinx-click",
"sphinx-copybutton",
"sphinx-panels",
"sphinxcontrib-bibtex",
"nbsphinx",
"sphinx-gallery",
"sphinx-copybutton",
"notebook",
]