forked from lincolnloop/python-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (86 loc) · 1.91 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
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = qrcode
version = 8.0.dev0
description = QR Code image generator
long_description = file: README.rst, CHANGES.rst
author = Lincoln Loop
author_email = [email protected]
url = https://github.com/lincolnloop/python-qrcode
keywords = qr denso-wave IEC18004
license = BSD
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Multimedia :: Graphics
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
colorama;platform_system=="Windows"
typing_extensions
pypng
python_requires = >= 3.7
[options.extras_require]
maintainer =
zest.releaser[recommended]
dev =
tox
pytest
pytest-cov
test =
coverage
pytest
pil =
pillow>=9.1.0
all =
zest.releaser[recommended]
tox
pytest
pytest
pytest-cov
pillow>=9.1.0
[options.entry_points]
console_scripts =
qr = qrcode.console_scripts:main
[flake8]
exclude =
.tox
.git
__pycache__
build
dist
max-line-length = 88
ignore = E203,W503
[isort]
profile = black
[coverage:run]
source = qrcode
parallel = True
[coverage:report]
exclude_lines =
pragma: no cover
@overload
if (typing\.)?TYPE_CHECKING:
skip_covered = True
[zest.releaser]
less-zeros = yes
version-levels = 2
tag-format = v{version}
tag-message = Version {version}
tag-signing = yes
date-format = %%-d %%B %%Y
prereleaser.middle =
qrcode.release.update_manpage
[tool:pytest]
filterwarnings = module