wums 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wums-0.1.0/PKG-INFO +24 -0
- wums-0.1.0/README.md +1 -0
- wums-0.1.0/pyproject.toml +38 -0
- wums-0.1.0/setup.cfg +4 -0
- wums-0.1.0/wums/__init__.py +0 -0
- wums-0.1.0/wums/boostHistHelpers.py +1177 -0
- wums-0.1.0/wums/ioutils.py +356 -0
- wums-0.1.0/wums/logging.py +145 -0
- wums-0.1.0/wums/output_tools.py +255 -0
- wums-0.1.0/wums/plot_tools.py +1782 -0
- wums-0.1.0/wums.egg-info/PKG-INFO +24 -0
- wums-0.1.0/wums.egg-info/SOURCES.txt +13 -0
- wums-0.1.0/wums.egg-info/dependency_links.txt +1 -0
- wums-0.1.0/wums.egg-info/requires.txt +9 -0
- wums-0.1.0/wums.egg-info/top_level.txt +2 -0
wums-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: wums
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: .
|
|
5
|
+
Author-email: Josh Bendavid <josh.bendavid@cern.ch>, Kenneth Long <kenneth.long@cern.ch>, David Walter <david.walter@cern.ch>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/WMass/wums
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: boost_histogram>=1.5.1
|
|
15
|
+
Requires-Dist: h5py>=3.12.1
|
|
16
|
+
Requires-Dist: hdf5plugin>=5.0.0
|
|
17
|
+
Requires-Dist: hist>=2.8.0
|
|
18
|
+
Requires-Dist: lz4>=4.4.3
|
|
19
|
+
Requires-Dist: matplotlib>=3.10.0
|
|
20
|
+
Requires-Dist: mplhep>=0.3.56
|
|
21
|
+
Requires-Dist: numpy>=2.2.2
|
|
22
|
+
Requires-Dist: uproot>=5.5.1
|
|
23
|
+
|
|
24
|
+
# WUMS: Wremnants Utilities, Modules, and other Stuff
|
wums-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# WUMS: Wremnants Utilities, Modules, and other Stuff
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=42", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wums"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "."
|
|
9
|
+
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Josh Bendavid", email = "josh.bendavid@cern.ch"},
|
|
13
|
+
{name = "Kenneth Long", email = "kenneth.long@cern.ch"},
|
|
14
|
+
{name = "David Walter", email = "david.walter@cern.ch"}
|
|
15
|
+
]
|
|
16
|
+
urls = {Homepage = "https://github.com/WMass/wums"}
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Operating System :: OS Independent"
|
|
22
|
+
]
|
|
23
|
+
requires-python = ">=3.8"
|
|
24
|
+
|
|
25
|
+
dependencies = [
|
|
26
|
+
"boost_histogram>=1.5.1",
|
|
27
|
+
"h5py>=3.12.1",
|
|
28
|
+
"hdf5plugin>=5.0.0",
|
|
29
|
+
"hist>=2.8.0",
|
|
30
|
+
"lz4>=4.4.3",
|
|
31
|
+
"matplotlib>=3.10.0",
|
|
32
|
+
"mplhep>=0.3.56",
|
|
33
|
+
"numpy>=2.2.2",
|
|
34
|
+
"uproot>=5.5.1"
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[tool.setuptools.packages.find]
|
|
38
|
+
where = ["."]
|
wums-0.1.0/setup.cfg
ADDED
|
File without changes
|