forked from GOVCERT-LU/eml_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
82 lines (72 loc) · 1.74 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
[bdist_wheel]
universal = 0
[metadata]
name = eml_parser
description = Python EML parser library
long_description = file: README.md
long_description_content_type = text/markdown
license = AGPLv3+
license_file = LICENSE
author = Georges Toth
author_email = [email protected]
url = https://github.com/GOVCERT-LU/eml_parser
keywords =
email
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Communications :: Email
[options]
zip_safe = False
packages = find:
include_package_data = True
python_requires = >= 3.7
install_requires =
python-dateutil
cchardet
typing; python_version < "3.5"
[options.packages.find]
exclude =
e2e
tests
[options.package_data]
eml_parser = py.typed
[options.extras_require]
filemagic =
file-magic >= 0.4.0
docs =
mkdocs-material
mkdocstrings
dev =
pylint
mypy
flake8
flake8-bandit
flake8-comprehensions
flake8-docstrings
pep8-naming
test =
pytest
coverage
[mypy]
show_error_context = True
show_column_numbers = True
ignore_missing_imports = True
disallow_incomplete_defs = True
disallow_untyped_defs = True
disallow_untyped_calls = False
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
strict_optional = True
check_untyped_defs = False
[flake8]
max-line-length = 240
docstring-convention = google
ignore = E111,E114,E121,E123,E125,E126,S101,E131,E122,E501,E127,W503,W504