2022-09-21 16:47:28 +00:00
|
|
|
[bumpversion]
|
|
|
|
|
current_version = 1.9.0
|
|
|
|
|
commit = True
|
|
|
|
|
tag = False
|
|
|
|
|
tag_name = {new_version}
|
|
|
|
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\+\w+-(?P<dev>\d+))?
|
|
|
|
|
serialize =
|
|
|
|
|
{major}.{minor}.{patch}+{$USER}-{dev}
|
|
|
|
|
{major}.{minor}.{patch}
|
|
|
|
|
message = Version updated from {current_version} to {new_version}
|
|
|
|
|
|
2021-12-05 14:34:15 +00:00
|
|
|
[metadata]
|
|
|
|
|
name = django-categories
|
2021-12-05 16:33:50 +00:00
|
|
|
version = 1.8.0
|
2021-12-05 14:34:15 +00:00
|
|
|
description = A way to handle one or more hierarchical category trees in django.
|
|
|
|
|
long_description = file:README.md
|
|
|
|
|
long_description_content_type = "text/markdown"
|
|
|
|
|
author = Corey Oordt
|
|
|
|
|
author_email = coreyoordt@gmail.com
|
|
|
|
|
url = http://github.com/jazzband/django-categories
|
2022-09-21 16:47:28 +00:00
|
|
|
classifiers =
|
|
|
|
|
Framework :: Django
|
2021-12-05 14:34:15 +00:00
|
|
|
|
|
|
|
|
[options]
|
2022-09-21 16:47:28 +00:00
|
|
|
zip_safe = False
|
|
|
|
|
include_package_data = True
|
2021-12-05 14:34:15 +00:00
|
|
|
|
|
|
|
|
[options.packages.find]
|
2022-09-21 16:47:28 +00:00
|
|
|
exclude =
|
|
|
|
|
example*
|
|
|
|
|
docs
|
|
|
|
|
build
|
2021-12-05 14:34:15 +00:00
|
|
|
include = categories
|
|
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
|
ignore = D203,W503,E501
|
2022-09-21 16:47:28 +00:00
|
|
|
exclude =
|
|
|
|
|
.git
|
|
|
|
|
.tox
|
|
|
|
|
docs
|
|
|
|
|
build
|
|
|
|
|
dist
|
|
|
|
|
doc_src
|
2021-12-05 14:34:15 +00:00
|
|
|
max-line-length = 119
|
|
|
|
|
|
|
|
|
|
[darglint]
|
2022-09-21 16:47:28 +00:00
|
|
|
ignore = DAR402
|
2021-12-05 14:34:15 +00:00
|
|
|
|
2016-03-31 15:50:50 +00:00
|
|
|
[bdist_wheel]
|
|
|
|
|
universal = 1
|
2021-12-05 16:33:50 +00:00
|
|
|
|
|
|
|
|
[bumpversion:part:dev]
|
|
|
|
|
|
|
|
|
|
[bumpversion:file:setup.cfg]
|
|
|
|
|
|
|
|
|
|
[bumpversion:file:categories/__init__.py]
|
|
|
|
|
|
2022-09-21 16:47:21 +00:00
|
|
|
[bumpversion:file(version heading):CHANGELOG.md]
|
2021-12-05 16:33:50 +00:00
|
|
|
search = Unreleased
|
2022-09-21 16:47:21 +00:00
|
|
|
|
|
|
|
|
[bumpversion:file(diff link):CHANGELOG.md]
|
|
|
|
|
search = {current_version}...HEAD
|
|
|
|
|
replace = {current_version}...{new_version}
|