File: setup.cfg

package info (click to toggle)
taurus-pyqtgraph 0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,576 kB
  • sloc: python: 5,313; makefile: 82
file content (46 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
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
[bumpversion]
current_version = 0.9.8
commit = True
message = Bump version {current_version} to {new_version}
tag = False
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize = 
	{major}.{minor}.{patch}-{release}
	{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values = 
	alpha
	gamma

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:taurus_pyqtgraph/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:docs/source/conf.py]
search = release = '{current_version}'
replace = release = '{new_version}'

[bdist_wheel]
universal = 1

[flake8]
exclude = 
	docs
	build
ignore = 
	E203, W503
per-file-ignores = 
	taurus_pyqtgraph/__init__.py:F401

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']