-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub's 1.0.2 is exactly the same as PyPI's 1.0.2 (clean-up cycle ha…
…s converged).
- Loading branch information
Showing
3 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
|
||
import re | ||
|
||
__version__ = "1.0.0" | ||
__version__ = "1.0.2" | ||
|
||
version = __version__ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,28 @@ | |
|
||
import histogrammar.version | ||
|
||
setup(name = "Histogrammar", | ||
setup(name = "histogrammar", | ||
version = histogrammar.version.__version__, | ||
packages = find_packages(), | ||
scripts = ["scripts/hgwatch"], | ||
description = "Composable histogram primitives for distributed data reduction.", | ||
long_description = """Histogrammar is a suite of data aggregation primitives designed for use in parallel processing. In the simplest case, you can use this to compute histograms, but the generality of the primitives allows much more. | ||
See http://histogrammar.org for a complete introduction. | ||
This Python implementation of Histogrammar adheres to version 1.0 of the specification and has been tested to guarantee compatibility with the Scala implementation. The test suite includes empty datasets, NaN/infinity handling, associativity tests, and numerical agreement at the level of one part in a trillion (double precision). Several common histogram types can be plotted in Matplotlib, PyROOT, and Bokeh with a single method call. | ||
If Numpy or Pandas is available, histograms and other aggregators can be filled from arrays ten to a hundred times more quickly via Numpy commands, rather than Python for loops. | ||
If PyROOT is available, histograms and other aggregators can be filled from ROOT TTrees hundreds of times more quickly by JIT-compiling a specialized C++ filler. | ||
Histograms and other aggregators may also be converted into CUDA code for inclusion in a GPU workflow. And if PyCUDA is available, they can also be filled from Numpy arrays by JIT-compiling the CUDA.""", | ||
author = "Jim Pivarski (DIANA-HEP)", | ||
author_email = "[email protected]", | ||
maintainer = "Jim Pivarski (DIANA-HEP)", | ||
maintainer_email = "[email protected]", | ||
url = "http://histogrammar.org", | ||
download_url = "https://github.com/histogrammar/histogrammar-python", | ||
license = "Apache Software License v2", | ||
test_suite = "tests", | ||
install_requires = [], | ||
|
@@ -39,4 +53,5 @@ | |
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
], | ||
platforms = "Any", | ||
) |