From e3b8948741ba10b2893562ca81a2cb6f4588e904 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Fri, 3 Apr 2015 01:01:05 +0300 Subject: [PATCH] Adding crunch with README description --- README.rst | 2 +- VERSION | 2 +- setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) 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: