diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 87dd704..494975f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,10 @@ Changelog for h5cube +v0.1.post1 +================================================================================ + +Administrative fix (typo in setup.py) + v0.1 ================================================================================ diff --git a/doc/source/conf.py b/doc/source/conf.py index 24c35f6..f1f2ba8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -67,7 +67,7 @@ # The short X.Y version. version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.1' +release = '0.1.post1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/h5cube/__init__.py b/h5cube/__init__.py index dab2d7c..8a1dc67 100644 --- a/h5cube/__init__.py +++ b/h5cube/__init__.py @@ -18,4 +18,5 @@ from .h5cube import cube_to_h5, h5_to_cube, H5, EXIT -__version__ = '0.1' +__version__ = '0.1.post1' + diff --git a/setup.py b/setup.py index 3ead813..d6255ae 100644 --- a/setup.py +++ b/setup.py @@ -2,8 +2,9 @@ setup( name='h5cube', - version='0.1', - requires='h5py (>=2.4)', + version='0.1.post1', + provides=['h5cube'], + requires=['h5py (>=2.4)'], packages=['h5cube'], url='https://www.github.com/bskinn/h5cube', license='MIT License',