-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
44 lines (37 loc) · 1.03 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
[bumpversion]
current_version = 0.213
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
{major}.{minor}
[bumpversion:file:setup.py]
search = version="{current_version}",
replace = version="{new_version}",
[bumpversion:file:screen19/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[flake8]
exclude = docs
[aliases]
test = pytest
[metadata]
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
project-urls =
Download = https://github.com/xia2/screen19/releases
GitHub = https://github.com/xia2/screen19
Bug-Tracker = https://github.com/xia2/screen19/issues
[options]
python_requires = >=3.6
[tool:pytest]
collect_ignore = ['setup.py']