diff --git a/MANIFEST.in b/MANIFEST.in index 97193ec..7b13681 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include AUTHORS.rst include LICENSE.txt include NEWS.rst -include README.rst +include Readme.rst diff --git a/Makefile b/Makefile index a46d223..4c6d7f3 100644 --- a/Makefile +++ b/Makefile @@ -28,4 +28,4 @@ docs: make -C docs/manual html wheel: - $(PYTHON) -m pip wheel . + $(PYTHON) -m pip wheel -w dist . diff --git a/NEWS.rst b/NEWS.rst index 5537098..bd90784 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,10 @@ IntelHex releases ***************** +2.2.1 (2018-01-30) +------------------ +* Fixes for PyPI. + 2.2 (2018-01-28) ---------------- * API changes: ``IntelHex.write_hex_file`` method: added support for new diff --git a/Readme.rst b/Readme.rst index 614c90b..2416ef3 100644 --- a/Readme.rst +++ b/Readme.rst @@ -24,7 +24,7 @@ restrictions. Supported Python versions ------------------------- -Intelhex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later) +IntelHex library v.2.2 supports Python 2 (2.4-2.7) and Python 3 (3.2-3.5 or later) without external libraries or 2to3 tool from the same codebase. Install diff --git a/intelhex/__version__.py b/intelhex/__version__.py index 41f0867..5ce4f0b 100644 --- a/intelhex/__version__.py +++ b/intelhex/__version__.py @@ -1,3 +1,3 @@ # IntelHex library version information -version_info = (2, 2, 0, 1) +version_info = (2, 2, 1) version_str = '.'.join([str(i) for i in version_info]) diff --git a/setup.py b/setup.py index 492e3d8..8cc7d92 100755 --- a/setup.py +++ b/setup.py @@ -40,10 +40,7 @@ import intelhex, intelhex.__version__ -LONG_DESCRIPTION = """\ - -""" - +LONG_DESCRIPTION = open('Readme.rst', 'r').read() METADATA = dict( name='intelhex', @@ -56,8 +53,8 @@ author_email='alexander.belchenko@gmail.com', url='https://pypi.python.org/pypi/IntelHex', - description='Python Intel Hex library', - long_description='Python Intel Hex library', + description='Python library for Intel HEX files manipulations', + long_description=LONG_DESCRIPTION, keywords='Intel HEX hex2bin HEX8', license='BSD', classifiers = [