Documentation tools for LSST Data Management projects, including Sphinx extensions.
pip install documenteer
Create a virtual environment with your method of choice (virtualenvwrapper or conda) and then clone or fork, and install:
.. code-block:: bash
git clone https://github.com/lsst-sqre/documenteer.git pip install -r requirements.txt
To make a release:
Update the :file:`CHANGELOG.rst`.
Increment version in :file:`setup.py`.
Tag:
git tag -s -m "Version X.Y.Z" vX.Y.Z
Build:
rm -R dist python setup.py sdist bdist_wheel
Upload:
twine upload dist/* git push --tags
MIT Licensed. See :file:`LICENSE` and :file:`COPYRIGHT`.