diff --git a/README.rst b/README.rst index 919cffd..7cf0636 100644 --- a/README.rst +++ b/README.rst @@ -14,10 +14,9 @@ Installation ------------ Requirements: Python 2.7 or 3.3+ with numpy_. -``hic`` is prerelease software. -You can install the development version with pip_:: +Install the latest release with pip_:: - pip install git+https://github.com/Duke-QCD/hic.git + pip install hic To run the tests, install nose_ and run :: diff --git a/doc/index.rst b/doc/index.rst index 61d43ac..cfe4309 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -11,10 +11,9 @@ Installation ------------ Requirements: Python 2.7 or 3.3+ with numpy_. -``hic`` is prerelease software. -You can install the development version with pip_:: +Install the latest release with pip_:: - pip install git+https://github.com/Duke-QCD/hic.git + pip install hic To run the tests, install nose_ and run :: diff --git a/hic/__init__.py b/hic/__init__.py index e399371..438d9cd 100644 --- a/hic/__init__.py +++ b/hic/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.1.dev0' +__version__ = '0.1.0' diff --git a/setup.py b/setup.py index 7485c34..499094a 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ packages=['hic', 'hic.test'], install_requires=['numpy'], classifiers=[ - 'Development Status :: 1 - Planning', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', @@ -31,6 +31,7 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering :: Physics' ] )