rm -rf docs/api/* docs/_build/
$(BIN)/sphinx-apidoc -o docs/api/ juju/
$(BIN)/sphinx-build -b html docs/ docs/_build/
+ cd docs/_build/ && zip -r docs.zip *
upload: docs
$(PY) setup.py sdist upload upload_docs --upload-dir=docs/_build
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(
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=[