django-categories/setup.cfg

71 lines
1.4 KiB
INI
Raw Normal View History

2022-09-21 16:47:28 +00:00
[bumpversion]
2022-09-22 14:49:55 +00:00
current_version = 1.9.2
2022-09-21 16:47:28 +00:00
commit = True
2022-09-21 17:12:31 +00:00
commit_args = --no-verify
tag = True
2022-09-21 16:47:28 +00:00
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\+\w+-(?P<dev>\d+))?
2024-04-17 10:42:46 +00:00
serialize =
2022-09-21 17:12:31 +00:00
{major}.{minor}.{patch}+{$BRANCH_NAME}-{dev}
2022-09-21 16:47:28 +00:00
{major}.{minor}.{patch}
message = Version updated from {current_version} to {new_version}
[metadata]
name = django-categories
2022-09-21 17:12:31 +00:00
version = attr:categories.__version__
description = A way to handle one or more hierarchical category trees in django.
long_description = file:README.md
2022-09-21 17:12:31 +00:00
long_description_content_type = text/markdown
author = Corey Oordt
author_email = coreyoordt@gmail.com
url = http://github.com/jazzband/django-categories
2024-04-17 10:42:46 +00:00
classifiers =
2022-09-21 16:47:28 +00:00
Framework :: Django
[options]
2022-09-21 16:47:28 +00:00
zip_safe = False
include_package_data = True
2022-02-25 08:40:39 +00:00
packages = find:
[options.packages.find]
2024-04-17 10:42:46 +00:00
exclude =
2022-09-22 14:49:55 +00:00
example*
docs
build
2024-04-17 10:42:46 +00:00
include =
2022-09-22 14:49:55 +00:00
categories
categories.*
[flake8]
ignore = D203,W503,E501
2024-04-17 10:42:46 +00:00
exclude =
2022-09-21 16:47:28 +00:00
.git
.tox
docs
build
dist
doc_src
max-line-length = 119
[darglint]
2022-09-21 16:47:28 +00:00
ignore = DAR402
[bdist_wheel]
universal = 1
[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]
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}
2024-04-17 10:42:46 +00:00
[zest.releaser]
python-file-with-version = categories/__init__.py