Adding crunch with README description

This commit is contained in:
Roman Mogilatov 2015-04-03 01:01:05 +03:00
parent d53b6d9a87
commit e3b8948741
3 changed files with 8 additions and 2 deletions

View File

@ -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 |

View File

@ -1 +1 @@
0.7.0
0.7.1

View File

@ -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: