-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
40 lines (34 loc) · 1.01 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
[bumpversion]
current_version = 0.1.4
commit = True
tag = True
tag_name = jira_plugin_{new_version}
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:jira_plugin.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[metadata]
name = kupfer_plugin_jira_plugin
description-file = README.rst
summary = Kupfer plugin to control jira
author = Hugo Sena Ribeiro
author-email = [email protected]
home-page = https://github.com/hugosenari/jira_plugin
license = MIT license
keywords = kupfer jira_plugin
classifiers = Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5