-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.1 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
[tool.poetry]
name = "dqmexplore"
description = "A consolidation of DQM data exploration tools."
version = "0.2.0"
readme = "README.md"
authors = [
"Gabriele Benelli <[email protected]>",
"Roy F. Cruz <[email protected]>",
"Tetiana Mazurets <[email protected]>",
"Richa Sharma <[email protected]>"
]
repository = "https://github.com/CMSTrackerDPG/DQMExplore/tree/main"
packages = [{ include = "dqmexplore", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
cmsdials = "^1.1.0"
numpy = "^1.26.4"
pandas = "^2.2.2"
plotly = "^5.22.0"
ipykernel = { version = "^6.29.4", optional = true }
ipywidgets = { version = "^8.1.2", optional = true }
nbformat = { version = "^5.10.4", optional = true }
omsapi = "^0.9.8.1"
pre-commit = { version = "^3.7.1", optional = true }
poetry-plugin-export = { version = "^1.8.0", optional = true }
[tool.poetry.extras]
nb = [
"ipykernel",
"ipywidgets",
"nbformat",
]
oms = [
"omsapi"
]
dev = [
"pre-commit",
"poetry-plugin-export"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"