mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
Adding crunch with README description
This commit is contained in:
parent
d53b6d9a87
commit
e3b8948741
|
@ -1,7 +1,7 @@
|
||||||
Objects
|
Objects
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Dependency management tool for Python projects.
|
Dependency management tool for Python projects
|
||||||
|
|
||||||
+---------------------------------------+-------------------------------------------------------------------+
|
+---------------------------------------+-------------------------------------------------------------------+
|
||||||
| *PyPi* | .. image:: https://pypip.in/version/Objects/badge.svg |
|
| *PyPi* | .. image:: https://pypip.in/version/Objects/badge.svg |
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -5,10 +5,16 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
|
DESCRIPTION = 'Dependency management tool for Python projects'
|
||||||
|
|
||||||
|
|
||||||
# Getting description.
|
# Getting description.
|
||||||
with open('README.rst') as readme_file:
|
with open('README.rst') as readme_file:
|
||||||
description = readme_file.read()
|
description = readme_file.read()
|
||||||
|
|
||||||
|
# Removing duplicated description
|
||||||
|
description = description.replace(DESCRIPTION, '')
|
||||||
|
|
||||||
|
|
||||||
# Getting requirements.
|
# Getting requirements.
|
||||||
with open('requirements.txt') as version:
|
with open('requirements.txt') as version:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user