-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
61 lines (52 loc) · 1.17 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
[metadata]
name = temple
author = Clover Health
author-email = [email protected]
summary = Templated project management
description-file = README.rst
home-page = https://github.com/CloverHealth/temple
python-requires = >=3.4
license = BSD 3-Clause
classifier =
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Development Status :: 4 - Beta
Operating System :: OS Independent
[coverage:run]
branch = True
source = temple
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Dont cover definsive assertion code
raise AssertionError
raise NotImplementedError
# Lexical noop
pass
show_missing = 1
fail_under = 100
[files]
packages = temple
[flake8]
select =
B,
B90,
C,
E,
F,
G,
W
application-import-names = temple,tests
import-order-style = google
max-complexity = 10
max-line-length = 99
[entry_points]
console_scripts =
temple = temple.cli:main
[pylint]
# Pylint rules are defined in .pylintrc since it has no setup.cfg configuration
[tool:pytest]
xfail_strict = true