-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.83 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rabbit-fit"
version = "0.2.5"
description = "."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
authors = [
{name = "David Walter", email = "david.walter@cern.ch"},
{name = "Josh Bendavid", email = "josh.bendavid@cern.ch"},
{name = "Kenneth Long", email = "kenneth.long@cern.ch"},
]
urls = {Homepage = "https://github.com/WMass/rabbit"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dependencies = [
"tensorflow",
"tensorflow-probability",
"wums[pickling]",
"numpy",
"h5py",
"hist",
"scipy",
]
[project.optional-dependencies]
plotting = ["matplotlib", "mplhep", "seaborn", "pandas", "plotly", "kaleido", "wums[plotting]"]
conversion = ["uproot"]
all = ["plotting", "conversion"]
[project.scripts]
rabbit_debug_inputdata = "bin.debug_inputdata:main"
rabbit_fit = "bin.rabbit_fit:main"
rabbit_limits = "bin.rabbit_limits:main"
rabbit_plot_cov = "bin.rabbit_plot_cov:main"
rabbit_plot_hists = "bin.rabbit_plot_hists:main"
rabbit_plot_hists_uncertainties = "bin.rabbit_plot_hists_uncertainties:main"
rabbit_plot_inputdata = "bin.rabbit_plot_inputdata:main"
rabbit_plot_likelihood_scan = "bin.rabbit_plot_likelihood_scan:main"
rabbit_plot_likelihood_scan2D = "bin.rabbit_plot_likelihood_scan2D:main"
rabbit_plot_pulls_and_impacts = "bin.rabbit_plot_pulls_and_impacts:main"
rabbit_print_impacts = "bin.rabbit_print_impacts:main"
rabbit_print_pulls_and_constraints = "bin.rabbit_print_pulls_and_constraints:main"
rabbit_text2hdf5 = "bin.rabbit_text2hdf5:main"
[tool.setuptools.packages.find]
where = ["."]