Skip to content

Commit

Permalink
GitHub's 1.0.2 is exactly the same as PyPI's 1.0.2 (clean-up cycle ha…
Browse files Browse the repository at this point in the history
…s converged).
  • Loading branch information
jpivarski committed Sep 6, 2016
1 parent 32f7e73 commit 3933e33
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = "1.0.0"
version = "1.0.2"
# The full version, including alpha/beta/rc tags.
release = "1.0.0"
release = "1.0.2"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion histogrammar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import re

__version__ = "1.0.0"
__version__ = "1.0.2"

version = __version__

Expand Down
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [],
Expand All @@ -39,4 +53,5 @@
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
],
platforms = "Any",
)

0 comments on commit 3933e33

Please sign in to comment.