-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
54 lines (48 loc) · 936 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[bumpversion]
current_version = 0.1.0
commit = True
tag = True
[bumpversion:file:setup.py]
search = {current_version}
replace = {new_version}
[bumpversion:file:fish_morphology_code/__init__.py]
search = {current_version}
replace = {new_version}
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120
exclude =
.git,
__pycache__,
docs,
build,
.ipynb_checkpoints
extend_ignore =
E501, # max line length
W503, # breaking before binary operators
E302, # multi-line empty space / comments bug
E203 # whitespace before ':'
builtins =
_,
NAME,
MAINTAINER,
MAINTAINER_EMAIL,
DESCRIPTION,
LONG_DESCRIPTION,
URL,
DOWNLOAD_URL,
LICENSE,
CLASSIFIERS,
AUTHOR,
AUTHOR_EMAIL,
PLATFORMS,
VERSION,
PACKAGES,
PACKAGE_DATA,
REQUIRES
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']