forked from dspelaez/wavespectra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (37 loc) · 1.04 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
[bumpversion]
current_version = 3.5.0
commit = True
tag = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:wavespectra/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
per-file-ignores =
wavespectra/__init__.py:F401
wavespectra/specdataset.py:F401
wavespectra/input/ww3.py:F401
wavespectra/input/triaxys.py:F401
wavespectra/input/ww3_msl.py:F401
wavespectra/input/wwm.py:F401
wavespectra/input/netcdf.py:F401
wavespectra/input/ncswan.py:F401
wavespectra/input/dictionary.py:F401
wavespectra/input/spotter.py:F401
wavespectra/input/dataset.py:F401
wavespectra/input/swan.py:F401
[aliases]
test=pytest
[tool:pytest]
collect_ignore = ['setup.py']
norecursedirs = '.*', 'build', 'dist', 'CVS', '_darcs', '{arch}', '*.egg',
'venv', 'broken'