-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]==7.1.0", "numpy", "cython"]
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 = "[email protected]"}]
dependencies = [
"damnit",
"euxfel_bunch_pattern",
"extra_data>=1.13",
"extra_geom",
"h5py",
"karabo_bridge",
"oauth2-xfel-client >=6.1",
"pandas",
"pasha",
"pint",
"requests",
"scipy",
"tabulate",
]
requires-python = ">=3.9"
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]
test = [
"pytest",
"pytest-cov",
"pytest-recording",
]
docs = [
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python>=1.2.0",
"pymdown-extensions",
]