-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
setup.cfg
70 lines (58 loc) · 1.37 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[bumpversion]
current_version = 1.9.2
commit = True
commit_args = --no-verify
tag = True
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\+\w+-(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}+{$BRANCH_NAME}-{dev}
{major}.{minor}.{patch}
message = Version updated from {current_version} to {new_version}
[metadata]
name = django-categories
version = attr:categories.__version__
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
classifiers =
Framework :: Django
[options]
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
example*
docs
build
include =
categories
categories.*
[flake8]
ignore = D203,W503,E501
exclude =
.git
.tox
docs
build
dist
doc_src
max-line-length = 119
[darglint]
ignore = DAR402
[bdist_wheel]
universal = 1
[bumpversion:part:dev]
[bumpversion:file:setup.cfg]
[bumpversion:file:categories/__init__.py]
[bumpversion:file(version heading):CHANGELOG.md]
search = Unreleased
[bumpversion:file(diff link):CHANGELOG.md]
search = {current_version}...HEAD
replace = {current_version}...{new_version}
[zest.releaser]
python-file-with-version = categories/__init__.py