-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
84 lines (77 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = warehouse
url = https://github.com/DD-DeCaF/warehouse
author = DD-DeCaF Team
author_email = niso@biosustain.dtu.dk
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3.6
license = Apache Software License Version 2.0
description = The storage for the experimental data used for modeling: omics, strains, media etc
long_description = file: README.md
keywords =
################################################################################
# Testing tools configuration #
################################################################################
[tool:pytest]
testpaths =
tests
markers =
raises
[coverage:paths]
source =
src/warehouse
[coverage:run]
branch = true
parallel = true
omit =
src/warehouse/commands.py
src/warehouse/wsgi.py
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
precision = 2
omit =
src/warehouse/commands.py
src/warehouse/wsgi.py
[flake8]
max-line-length = 80
exclude = __init__.py
ignore =
# We do not require docstrings on all public functions and classes. We
# encourage them but ultimately it is decided during review.
D100
D101
D102
D103
D104
D105
D106
D107
# The following conflict with `black` which is the more pedantic.
E203
W503
D202
[isort]
skip = __init__.py
line_length = 80
indent = 4
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
lines_after_imports = 2
known_first_party = warehouse
known_third_party =
flask
flask_apispec
flask_cors
marshmallow
pytest
raven
werkzeug