-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 936 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "refrunrank"
version = "1.0.0"
description = "Tools for the automated selection of reference runs"
authors = [
{name = "Roy Cruz", email = "roy.cruz.candelaria@cern.ch"},
{name = "Guillermo Fidalgo", email = "guillermo.fidalgo@upr.edu"}
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"cmsdials[pandas]>=1.5.0",
"dqmexplore@git+https://github.com/CMSTrackerDPG/DQMExplore.git",
"scikit-learn>=1.6.1",
]
[project.urls]
Repository = "https://github.com/CMSTrackerDPG/ReferenceRunRank"
[project.optional-dependencies]
dev = [
"pre-commit>=3.6.2",
]
nb = [
"matplotlib>=3.10.0",
"notebook>=7.3.2",
"seaborn>=0.13.2",
"mplhep>=0.3.59"
]
[project.scripts]
rrr = "scripts.rrr:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]