-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
79 lines (67 loc) · 1.57 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
[project]
name = "xframe"
dynamic = ["version"]
description = "A framework for scientific algorithms targeting X-ray scattering"
keywords = ["scientific computing","xray","FXS","physics"]
readme = "README.md"
authors = [
{name = "Tim Berberich", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
]
dependencies = [
"h5py",
"numpy",
"ruamel.yaml",
"scipy",
"click",
"psutil",
]
requires-python = ">=3.8"
[project.urls]
"Homepage" = "https://github.com/European-XFEL/xFrame"
"Documentation" = "https://xframe-fxs.readthedocs.io"
[project.optional-dependencies]
fxs = [
"pysofft",
"shtns",
"pyopencl",
"vtk",
"matplotlib",
"opencv-python",
"pygsl",
"psutil",
"flt",
]
all = [
"pysofft",
"shtns",
"pyopencl",
"vtk",
"matplotlib",
"opencv-python",
"pygsl",
"psutil",
"flt",
"SharedArray"
]
[project.scripts]
xframe = "xframe.main:start_routine_cmd"
[build-system]
#requires = ["setuptools>=60","setuptools-scm>=8.0"]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "xframe/_version.py"
#[build-system]
#requires = ["pdm-backend"]
#build-backend = "pdm.backend"
[tool.setuptools.packages.find]
where = ["."]
include = ["xframe*"]
#[tool.setuptools.dynamic]
#version = {attr = "xframe.__version__"}