-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.12 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wums"
version = "0.1.12"
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"},
{name = "Jan Eysermans", email = "jan.eysermans@cern.ch"},
]
urls = {Homepage = "https://github.com/WMass/wums"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dependencies = [
"hist",
"numpy",
]
[project.optional-dependencies]
plotting = ["matplotlib", "mplhep"]
fitting = ["tensorflow", "jax", "scipy"]
pickling = ["boost_histogram", "h5py", "hdf5plugin", "lz4"]
all = ["plotting", "fitting", "pickling"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"wums" = ["Templates/index.php"]