forked from WycliffeAssociates/DOC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
62 lines (56 loc) · 970 Bytes
/
setup.cfg
File metadata and controls
62 lines (56 loc) · 970 Bytes
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
[metadata]
name = document
version = 0.0.1
author = Example Author
author_email = author@example.com
description = A small example package
long_description = file: README.md
long_description_content_type = text/markdown
# url = https://github.com/pypa/sampleproject
# project_urls =
# Bug Tracker = https://github.com/pypa/sampleproject/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
[options.packages.find]
where = src
[tool:pytest]
minversion = 6.0
# addopts = -ra -q
testpaths =
tests
[flake8]
max-line-length = 120
ignore =
C812,
D104,
D107,
D202,
D205,
D400,
D401,
DAR101,
DAR201,
DAR301,
E266,
E800,
P101,
P103,
Q000,
W503,
WPS110,
WPS117,
WPS226,
WPS306,
WPS433,
WPS519,
WPS600
# [isort]
# profile = "black"
# multi_line_output = 3