forked from ScottWales/threddsclient
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
46 lines (38 loc) · 1.13 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
45
46
[bumpversion]
current_version = 0.4.6
commit = True
tag = True
[metadata]
description-file = README.rst
[bumpversion:file:threddsclient/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:CHANGES.rst]
search =
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================
replace =
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================
* Nothing new for the moment.
.. _changes_{new_version}:
`{new_version} <https://github.com/bird-house/threddsclient/tree/v{new_version}>`_ ({now:%%Y-%%m-%%d})
==========================================================================================
[tool:pytest]
addopts =
--strict
--tb=native
tests/
python_files = test_*.py
markers =
online: mark test to need internet connection
slow: mark test to be slow
[flake8]
ignore = F401,E402
max-line-length = 120
exclude =
.git,
__pycache__,
docs,
dist,
examples