-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (50 loc) · 1.86 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
[build-system]
requires = ["setuptools>=46.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pythium"
description = "An alternative analysis workflow that skips ROOT"
readme = "README.md"
authors = [{name = "Mohamed Aly", email = "mohamed.aly@cern.ch"},
{name = "Brian Le", email = "brian.le@cern.ch"},
{name = "Joshua Winter", email = "joshua.krystin.winter@cern.ch"},
{name = "Konrad Malirz", email = "konrad.malirz@cern.ch"},
{name = "Flavio Ryu", email = "flavio.ryu@cern.ch"}]
maintainers = [{name = "Mohamed Aly", email = "mohamed.aly@cern.ch"},
{name = "Brian Le", email = "brian.le@cern.ch"},
{name = "Joshua Winter", email = "joshua.krystin.winter@cern.ch"}]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed"
]
dynamic = ["version"]
dependencies = ["hist",
"awkward>=1.0",
"uproot4>=4.0",
"mplhep",
"numpy",
"h5py==3.6.0",
"psutil",
"beartype",
"schema",
"dask",
"distributed",
"vector",
"graphviz"
]
[project.urls]
homepage = "https://github.com/MoAly98/Pythium/tree/main"
documentation = "https://pythium.readthedocs.io/en/main/"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pythium", "pythium.sklimming","pythium.histogramming", "pythium.scripts", "pythium.common"]
[tool.setuptools.dynamic]
version = {attr = "pythium.__version__"}
[project.scripts]
pythium-sklim = "pythium.scripts.sklim:main"
pythium-hist = "pythium.scripts.histogram:main"