-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (74 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
80 lines (74 loc) · 1.82 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
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools_scm[toml]==7.1.0",
"numpy",
"cython !=3.1.0,!=3.1.1", # Avoiding https://github.com/cython/cython/issues/6855
# and https://github.com/cython/cython/issues/6897
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "get_version.version" }
[tool.setuptools.exclude-package-data]
"*" = ["get_version.py"]
[project]
name = "euxfel-EXtra"
dynamic = ["version"]
description = "European XFEL toolkit for research and analysis"
authors = [{name = "European XFEL", email = "da@xfel.eu"}]
dependencies = [
"damnit",
"euxfel_bunch_pattern",
"extra_data>=1.13",
"extra_geom",
"extra_proposal",
"h5py",
"karabo_bridge",
"lmfit",
"oauth2-xfel-client >=6.1",
"pandas",
"xarray",
"mpl_interactions",
"pasha",
"pint",
"requests",
"scipy",
"tabulate",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/European-XFEL/EXtra"
Documentation = "https://extra.readthedocs.io/en/latest/"
[project.optional-dependencies]
gui = [
"ipywidgets",
"ipympl",
]
test = [
"pytest",
"pytest-cov",
"pytest-recording",
]
docs = [
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python>=1.2.0",
"pygments",
"pymdown-extensions",
]
[tool.coverage.report]
exclude_also = [
'if __name__ == .__main__.:',
]