-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
86 lines (80 loc) · 2.16 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
80
81
82
83
84
85
86
[tool]
[tool.poetry]
name = "straxen"
version = "3.0.2"
description = "Streaming analysis for XENON"
readme = "README.md"
authors = [
"Straxen contributors, the XENON collaboration",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
]
repository = "https://github.com/XENONnT/straxen"
[tool.poetry.scripts]
ajax = "straxen.scripts.ajax:main"
bootstrax = "straxen.scripts.bootstrax:main"
microstrax = "straxen.scripts.microstrax:main"
refresh_raw_records = "straxen.scripts.refresh_raw_records:main"
restrax = "straxen.scripts.restrax:main"
straxen_print_versions = "straxen.scripts.straxen_print_versions:main"
straxer = "straxen.scripts.straxer:main"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
strax = ">=2.0.3"
bokeh = "*"
commentjson = "*"
gitpython = "*"
graphviz = "*"
immutabledict = "*"
matplotlib = "*"
multihist = ">=0.6.3"
numba = ">=0.50.0"
numpy = "<2.0.0"
packaging = "*"
m2r = "==0.2.1"
docutils = "==0.18.1"
mistune = "==0.8.4"
pymongo = "*"
requests = "*"
utilix = ">=0.11.0"
xedocs = "*"
commonmark = { version = "0.9.1", optional = true }
nbsphinx = { version = "0.8.9", optional = true }
recommonmark = { version = "0.7.1", optional = true }
sphinx = { version = "7.1.2", optional = true }
sphinx_rtd_theme = { version = "1.3.0", optional = true }
Jinja2 = { version = "3.1.4", optional = true }
urllib3 = { version = "2.2.2", optional = true }
lxml_html_clean = { version = "*", optional = true }
[tool.poetry.extras]
docs = [
"commonmark",
"nbsphinx",
"recommonmark",
"sphinx",
"sphinx_rtd_theme",
"Jinja2",
"urllib3",
"lxml_html_clean",
]
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
preview = true
[tool.docformatter]
recursive = true
in-place = true
style = "sphinx"
wrap-summaries = 100
wrap-descriptions = 100
blank = true