Makes including readme text in python packages for display on PyPI super convenient, in setup.py:
"""A silly setup.py example""" from setuptools import setup from os.path import dirname, join THIS_DIR = dirname(__name__) README = open(join(THIS_DIR, "README.rst")).read() setup( name ..., description=__doc__, # """A silly setu... long_description=README )
Makes including readme text in python packages for display on PyPI super convenient, in setup.py: