-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
83 lines (77 loc) · 1.84 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
[tool]
[tool.poetry]
name = "strax"
version = "2.0.1"
description = "Streaming analysis for xenon TPCs"
readme = "README.md"
authors = [
"strax developers",
]
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/AxFoundation/strax"
[tool.poetry.scripts]
rechunker = "strax.scripts.rechunker:main"
[tool.poetry.dependencies]
python = ">=3.6,<3.13"
blosc = "*"
click = "*"
deepdiff = "*"
dill = "*"
fsspec = "*"
immutabledict = "*"
lz4 = "*"
numba = ">=0.43.1"
numexpr = "*"
numpy = ">=1.18.5,<2.0.0"
packaging = "*"
pandas = "*"
pdmongo = "*"
psutil = "*"
pymongo = "*"
scipy = "*"
tqdm = ">=4.46.0"
zarr = "*"
zstd = "*"
sphinx = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
nbsphinx = { version = "*", optional = true }
recommonmark = { version = "*", optional = true }
graphviz = { version = "*", optional = true }
m2r = { version = "*", optional = true }
mistune = { version = "0.8.4", optional = true }
urllib3 = { version = "2.2.2", optional = true }
lxml_html_clean = { version = "*", optional = true }
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx_rtd_theme",
"nbsphinx",
"recommonmark",
"graphviz",
"m2r",
"mistune",
"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