diff --git a/README.rst b/README.rst deleted file mode 100644 index d537ebb..0000000 --- a/README.rst +++ /dev/null @@ -1,18 +0,0 @@ - -.. image:: https://badge.fury.io/py/minghu6.svg - :target: https://badge.fury.io/py/minghu6 - -.. image:: https://travis-ci.org/minghu6/minghu6_py.svg - :target: https://travis-ci.org/minghu6/minghu6_py - -.. image:: https://coveralls.io/repos/github/minghu6/minghu6_py/badge.svg?branch=develop - :target: https://coveralls.io/github/minghu6/minghu6_py?branch=develop - -.. image:: https://landscape.io/github/minghu6/minghu6_py/develop/landscape.svg?style=flat - :target: https://landscape.io/github/minghu6/minghu6_py/develop - :alt: Code Health - - -An Util Package ------------- - diff --git a/minghu6/__init__.py b/minghu6/__init__.py index 2457b1d..cb7e420 100644 --- a/minghu6/__init__.py +++ b/minghu6/__init__.py @@ -6,4 +6,4 @@ """ import hy -__version__ = '1.6.0' +__version__ = '1.6.1' diff --git a/setup.py b/setup.py index fc95de1..4a8dc85 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # allow setup.py to be run from any path os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) -with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: +with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: README = readme.read() with open('requirements.txt') as f: REQUIRED = f.read().splitlines()