X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=setup.py;h=df12cfed2c24c76029ae5f66d782bb9917f07f47;hb=a9180cca8165ab6396971a30e3063845a428dd5e;hp=47b9d0e542795a771db3eb8aab6c186ce5b5d597;hpb=10df11a1bb0b889ecded37a3f0ccdf6eac2184c0;p=osm%2FN2VC.git diff --git a/setup.py b/setup.py index 47b9d0e..df12cfe 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,11 @@ from setuptools import setup, find_packages here = Path(__file__).absolute().parent readme = here / 'docs' / 'readme.rst' +changelog = here / 'docs' / 'changelog.rst' +long_description = '{}\n\n{}'.format( + readme.read_text(), + changelog.read_text() +) version = here / 'VERSION' setup( @@ -34,7 +39,7 @@ setup( maintainer='Juju Ecosystem Engineering', maintainer_email='juju@lists.ubuntu.com', description=('Python library for Juju'), - long_description=readme.read_text(), + long_description=long_description, url='https://github.com/juju/python-libjuju', license='Apache 2', classifiers=[