BotZ/setup.cfg

27 lines
519 B
INI
Raw Normal View History

2019-01-07 11:16:16 +01:00
[bumpversion]
2019-09-05 17:57:58 +02:00
current_version = 1.1.1
2019-01-07 11:16:16 +01:00
commit = True
tag = True
2019-09-04 12:38:35 +02:00
sign_tags = True
2019-01-07 11:16:16 +01:00
[bumpversion:file:setup.py]
2019-09-04 12:38:35 +02:00
search = VERSION = "{current_version}"
replace = VERSION = "{new_version}"
2019-01-07 11:16:16 +01:00
[bumpversion:file:bot_z/__init__.py]
2019-09-04 12:38:35 +02:00
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:Dockerfile]
search = LABEL io.troubles.botz.version="{current_version}"
replace = LABEL io.troubles.botz.version="{new_version}"
2019-01-07 11:16:16 +01:00
[bdist_wheel]
2019-01-14 17:51:19 +01:00
universal = 0
2019-01-07 11:16:16 +01:00
[flake8]
exclude = docs
[aliases]
2019-09-04 15:17:07 +02:00