-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.cfg
54 lines (47 loc) · 988 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
[metadata]
name = thenewboston
url = https://github.com/thenewboston-developers/thenewboston-python
license = MIT
author = Bucky Roberts
author_email = [email protected]
maintainer = Thenewboston
long_description = file: README.md
long_description_content_type = text/x-md
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.7
[options.packages.find]
where = src
[tool:pytest]
testpaths = tests
filterwarnings =
error
[coverage:run]
branch = True
source =
src
tests
[coverage:paths]
source =
src
*/site-packages
[flake8]
ignore = D203,D101,D400,D401,D106,W503,F403,F405,E501,D403,D104,C101,D100,D105,D103,D102
exclude =
.git,
__pycache__,
.venv,
venv,
docs
filename = *.py
application-import-names =
thenewboston
accept-encodings = utf-8,utf-16
import-order-style = pycharm
inline-quotes = single
max-complexity = 12
max-line-length = 120
max-linenumber = 500
multiline-quotes = double