-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (44 loc) · 1.18 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
[tool]
[tool.poetry]
name = "xenon-fuse"
version = "1.4.4"
description = "XENON Framework for Unified Simulations of Events"
authors = [
"Henning Schulze Eißing, <[email protected]>",
"Diego Ramírez García, <[email protected]>",
]
readme = "README.md"
homepage = "https://github.com/XENONnT/fuse"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
]
packages = [
{ include = "fuse" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = "*"
pandas = "*"
scipy = "*"
scikit-learn = "*"
immutabledict = "*"
timeout_decorator = "*"
periodictable = "*"
nestpy = ">=2.0.2"
numba = ">=0.58.1"
awkward = ">=2.5.1"
uproot = ">=5.2.1"
strax = ">=2.0.5"
straxen = ">=3.0.3"
utilix = ">=0.11.0"
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"