diff --git a/README.rst b/README.rst index da72acdc..138c1834 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Objects ======= -Dependency management tool for Python projects. +Dependency management tool for Python projects +---------------------------------------+-------------------------------------------------------------------+ | *PyPi* | .. image:: https://pypip.in/version/Objects/badge.svg | diff --git a/VERSION b/VERSION index faef31a4..39e898a4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.7.1 diff --git a/setup.py b/setup.py index 4a9f9142..affa7fc6 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,16 @@ from setuptools import setup +DESCRIPTION = 'Dependency management tool for Python projects' + + # Getting description. with open('README.rst') as readme_file: description = readme_file.read() + # Removing duplicated description + description = description.replace(DESCRIPTION, '') + # Getting requirements. with open('requirements.txt') as version: