-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (72 loc) · 1.61 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "damnit"
authors = [
{name = "Thomas Kluyver", email = "[email protected]"},
{name = "Luca Gelisio", email = "[email protected]"},
]
description = "The Data And Metadata iNspection Interactive Thing"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = ["License :: OSI Approved :: BSD License"]
dynamic = ["version"]
readme = "README.md"
dependencies = [
"h5netcdf>=1.4.1",
"h5py",
"orjson", # used in plotly for faster json serialization
"pandas",
"plotly",
"xarray"
]
[project.optional-dependencies]
backend = [
"EXtra-data",
"ipython",
"kafka-python-ng",
"kaleido", # used in plotly to convert figures to images
"matplotlib",
"numpy",
"pyyaml",
"requests",
"supervisor",
"termcolor"
]
gui = [
"adeqt",
"mplcursors",
"mpl-pan-zoom",
"openpyxl", # for spreadsheet export
"PyQt5",
"PyQtWebEngine",
"pyflakes", # for checking context file in editor
"QScintilla==2.13",
"superqt",
"tabulate", # used in pandas to make markdown tables (for Zulip)
]
test = [
"pillow",
"pytest",
"pytest-qt",
"pytest-cov",
"pytest-xvfb",
"pytest-timeout",
"pytest-venv",
"testpath",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python",
"pymdown-extensions"
]
[project.urls]
Home = "https://github.com/European-XFEL/DAMNIT"
[project.scripts]
amore-proto = "damnit.cli:main"
[tool.pytest.ini_options]
timeout = 120
norecursedirs = "tests/helpers"