-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
82 lines (75 loc) · 2.01 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
[metadata]
name = email-normalize
version = file: VERSION
description = Return a normalized email-address stripping ISP specific behaviors
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = BSD 3-Clause License
license-file = LICENSE
home-page = https://github.com/gmr/email-normalize
project_urls =
Bug Tracker = https://github.com/gmr/email-normalize/issues
Documentation = https://email-normalize.readthedocs.io
Source Code = https://github.com/gmr/email-normalize/
author = Gavin M. Roy
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Framework :: AsyncIO
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Communications
Topic :: Communications :: Email
Topic :: Internet
Topic :: Software Development
Typing :: Typed
requires-dist = setuptools
keywords =
email
[options]
include_package_data = True
install_requires =
aiodns
packages =
email_normalize
zip_safe = true
[options.extras_require]
testing =
asynctest
coverage
flake8
flake8-comprehensions
flake8-deprecated
flake8-import-order
flake8-print
flake8-quotes
flake8-rst-docstrings
flake8-tuple
pygments
[coverage:run]
branch = True
command_line = -m unittest discover tests --verbose
data_file = build/.coverage
[coverage:report]
show_missing = True
include =
email_normalize/*
omit =
tests/*.py
[coverage:html]
directory = build/coverage
[coverage:xml]
output = build/coverage.xml
[flake8]
application-import-names = email_normalize, tests
exclude = build,docs,env
ignore = RST306,RST399,W503
import-order-style = pycharm
rst-directives = seealso
rst-roles = attr,class,const,data,exc,func,meth,mod,obj,ref,yields