This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
33 lines (32 loc) · 1.69 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[semantic_release]
# The file(s) and variable name of where the version number is stored.
version_variable=src/PyDynamic/__init__.py:__version__,docs/conf.py:version
# The way we get and set the new version. Can be commit or tag.
# If set to tag, will get the current version from the latest tag matching vX.Y.Z.
# This won’t change the source defined in version_variable.
# If set to commit, will get the current version from the source defined in
# version_variable, edit the file and commit it.
version_source=commit
# Import path of a Python function that can parse commit messages and return
# information about the commit.
commit_parser=semantic_release.history.angular_parser
# If set to false the pypi uploading will be disabled.
upload_to_pypi=true
# If set to false, do not upload distributions to GitHub releases.
upload_to_release=true
# The branch to run releases from.
branch=main
# The name of your hvcs. Currently only GitHub and GitLab are supported.
hvcs=github
# Whether or not to commit changes when bumping version.
commit_version_number=true
# The name of the file where the changelog is kept, relative to the root of the repo.
changelog_file=CHANGELOG.md
# Comma-separated list of sections to display in the changelog. They will be
# displayed in the order they are given. The available options depend on the commit
# parser used.
changelog_sections=feature,fix,breaking,documentation,performance
# A comma-separated list of the import paths of components to include in the changelog.
changelog_components=semantic_release.changelog.changelog_headers,semantic_release.changelog.compare_url
[rstcheck]
ignore_messages=(No directive entry for "automodule" in module "docutils.parsers.rst.languages.en"\.$)