forked from cms-l1-dpg/Phase2-L1MenuTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (67 loc) · 1.46 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
# pyproject.toml
[build-system]
build-backend = 'poetry.core.masonry.api'
requires = [
"poetry-core~=1.0"
]
[tool.poetry]
name = "menu-tools"
version = "0.1.0"
description = "Tools to evaluate performance of L1 objects and triggers in the menu for Phase-II."
license = "MIT"
authors = [
"Matteo Bonanomi <[email protected]>",
"Daniel Hundhausen <[email protected]>",
"Artur Lobanov <[email protected]>",
]
readme = "README.md"
packages = [
{ include = "menu_tools" },
]
[tool.poetry.dependencies]
python = "~3.11.0"
awkward = "2.5.2"
fsspec = "2023.12.2"
pyyaml = "6.0.1"
matplotlib = "3.9.2"
mplhep = "0.3.31"
numpy = "^1.23.0"
pandas = "2.1.4"
tqdm = "4.66.1"
pyarrow = "14.0.2"
scipy = "1.10.1"
uproot = "5.0.4"
vector = "1.1.1.post1"
[tool.poetry.group.dev.dependencies]
black = "23.12.1"
mypy = "1.8.0"
flake8 = "^7.0.0"
[tool.poetry.group.test.dependencies]
pytest = "7.4.3"
[tool.poetry.scripts]
cache_objects = "menu_tools.caching.cache_objects:main"
object_performance = "menu_tools.object_performance.plotter:main"
rate_plots = "menu_tools.rate_plots.plotter:main"
rate_table = "menu_tools.rate_table.rate_table:main"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::UserWarning",
'ignore:A NumPy version',
]
pythonpath = [
"src"
]
testpaths = [
"tests",
]
[tool.mypy]
files = [
"menu_tools"
]
disable_error_code = [
"import-untyped",
"index",
"attr-defined"
]
explicit_package_bases = true