diff --git a/README.rst b/README.rst index f081f3d..5c2d936 100644 --- a/README.rst +++ b/README.rst @@ -412,7 +412,7 @@ strip-release Strip the release part. Check Debian Linux official packages ----------------------------------- +------------------------------------ This enables you to track the update of `Debian Linux official packages `_, without needing of apt and an updated local APT database. debianpkg diff --git a/nvchecker/__init__.py b/nvchecker/__init__.py index cc631b5..1d31fd9 100644 --- a/nvchecker/__init__.py +++ b/nvchecker/__init__.py @@ -1,4 +1,4 @@ # MIT licensed # Copyright (c) 2013-2018 lilydjwg , et al. -__version__ = '1.2' +__version__ = '1.2.7' diff --git a/setup.py b/setup.py index 7ed5d63..e4951c1 100755 --- a/setup.py +++ b/setup.py @@ -3,6 +3,9 @@ from setuptools import setup, find_packages import nvchecker +# The complex upload command: +# rm -rf dist && python setup.py sdist && twine check dist/* && twine upload -s dist/* + setup( name = 'nvchecker', version = nvchecker.__version__, @@ -13,6 +16,7 @@ setup( keywords = 'new version build check', url = 'https://github.com/lilydjwg/nvchecker', long_description = open('README.rst', encoding='utf-8').read(), + long_description_content_type = 'text/x-rst', platforms = 'any', zip_safe = False,