mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 01:26:51 +03:00
Adding crunch with README description
This commit is contained in:
parent
d53b6d9a87
commit
e3b8948741
|
@ -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 |
|
||||
|
|
6
setup.py
6
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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user