From e22d3e4c1dc19d68b8dd567d1268c920109ad9bc Mon Sep 17 00:00:00 2001 From: Tim Van Steenburgh Date: Tue, 20 Dec 2016 11:58:20 -0500 Subject: [PATCH] Add long description for pypi --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index de262e4..64fadf7 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. - +from pathlib import Path from setuptools import setup, find_packages +here = Path(__file__).absolute().parent +readme = here / 'docs' / 'readme.rst' setup( name='juju', @@ -31,6 +33,7 @@ setup( maintainer='Juju Ecosystem Engineering', maintainer_email='juju@lists.ubuntu.com', description=('Python library for Juju'), + long_description=readme.read_text(), url='https://github.com/juju/python-libjuju', license='Apache 2', classifiers=[ -- 2.17.1