-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
40 lines (34 loc) · 1.02 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.1
commit = True
tag = True
tag_name = url_encode_{new_version}
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:url_encode.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
[metadata]
name = kupfer_plugin_url_encode
description-file = README.rst
summary = Decode and encode actions for kupfer
author = Hugo Sena Ribeiro
author-email = [email protected]
home-page = https://github.com/hugosenari/Kupfer-Plugins/
license = MIT license
keywords = kupfer url_encode
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