Metadata-Version: 2.1
Name: antsibull-changelog
Version: 0.3.0
Summary: Changelog tool for Ansible-base and Ansible collections
Home-page: https://github.com/ansible-community/antsibull-changelog
License: GPL-3.0-or-later
Author: Felix Fontein
Author-email: felix@fontein.de
Requires-Python: >=3.6.0,<4.0.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: PyYAML
Requires-Dist: docutils
Requires-Dist: packaging
Requires-Dist: rstcheck (>=3,<4)
Requires-Dist: semantic_version
Project-URL: Bug tracker, https://github.com/ansible-community/antsibull-changelog/issues
Project-URL: Changelog, https://github.com/ansible-community/antsibull-changelog/tree/master/CHANGELOG.rst
Project-URL: Documentation, https://github.com/ansible-community/antsibull-changelog/tree/master/docs/
Project-URL: Repository, https://github.com/ansible-community/antsibull-changelog
Description-Content-Type: text/markdown

# antsibull-changelog -- Ansible Changelog Tool

A changelog generator used by Ansible and Ansible collections.

- Using the [`antsibull-changelog` CLI tool](https://github.com/ansible-community/antsibull-changelog/tree/master/docs/changelogs.rst).
- Documentation on the [`changelog.yaml` format](https://github.com/ansible-community/antsibull-changelog/tree/master/docs/changelog.yaml-format.md).

Scripts are created by poetry at build time.  So if you want to run from
a checkout, you'll have to run them under poetry:

    python3 -m pip install poetry
    poetry install  # Installs dependencies into a virtualenv
    poetry run antsibull-changelog --help

If you want to create a new release:

    poetry build
    poetry publish  # Uploads to pypi.  Be sure you really want to do this

Note: When installing a package published by poetry, it is best to use pip >= 19.0.
Installing with pip-18.1 and below could create scripts which use pkg_resources
which can slow down startup time (in some environments by quite a large amount).

Unless otherwise noted in the code, it is licensed under the terms of the GNU
General Public License v3 or, at your option, later.

