diff --git a/.gitignore b/.gitignore index d475091..ef30f6c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ __pycache__/ dist/ .coverage htmlcov/ +build/ diff --git a/jandd/sphinxext/ip.py b/jandd/sphinxext/ip.py index 0842260..8f03776 100644 --- a/jandd/sphinxext/ip.py +++ b/jandd/sphinxext/ip.py @@ -8,7 +8,7 @@ :copyright: Copyright (c) 2016 Jan Dittberner :license: GPLv3+, see COPYING file for details. """ -__version__ = '0.1.0' +__version__ = '0.1.1' import re diff --git a/setup.py b/setup.py index a2e086f..db7357b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -version = '0.1.0' +version = '0.1.1' with open('README.rst') as readme: description = readme.read() + "\n\n" @@ -17,7 +17,8 @@ tests_requires = ['path.py>=8.2.1'] setup( author="Jan Dittberner", author_email="jan@dittberner.info", - description=description, + description="IP address extensions for Sphinx", + long_description=description, include_package_data=True, install_requires=requires, keywords="sphinx extension IP",