-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
80 lines (73 loc) · 1.77 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
[metadata]
name = metabolic-ninja
url = https://github.com/DD-DeCaF/metabolic-ninja
author = DD-DeCaF Team
author_email = [email protected]
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 = Predict heterologous pathways for the given organism and chemical of interest
long_description = file: README.md
keywords =
################################################################################
# Testing tools configuration #
################################################################################
[tool:pytest]
testpaths =
tests
markers =
raises
[coverage:paths]
source =
src/metabolic_ninja
[coverage:run]
branch = true
parallel = true
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
precision = 2
[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 = metabolic_ninja
known_third_party =
cameo
cobra
flask
flask_apispec
flask_cors
marshmallow
pytest
raven
werkzeug