forked from scikit-learn-contrib/imbalanced-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (33 loc) · 776 Bytes
/
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.9.0.dev0
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{dev}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = gamma
values =
dev
gamma
[bumpversion:part:dev]
[bumpversion:file:imblearn/_version.py]
[aliases]
test = pytest
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
addopts =
--ignore build_tools
--ignore benchmarks
--ignore doc
--ignore examples
--ignore maint_tools
--doctest-modules
-rs
filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning
[flake8]
max-line-length = 88
ignore = E121,E123,E126,E226,E24,E704,W503,W504,E203
per-file-ignores =
examples/*: E402