forked from heuer/segno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
72 lines (64 loc) · 2.02 KB
/
setup.cfg
File metadata and controls
72 lines (64 loc) · 2.02 KB
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
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120
[coverage:run]
branch = true
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
include = segno*
[metadata]
name = segno
version = attr:segno.__version__
url = https://github.com/heuer/segno/
project_urls =
Homepage = https://github.com/heuer/segno/
Documentation = https://segno.readthedocs.io/
Code = https://github.com/heuer/segno/
Issue tracker = https://github.com/heuer/segno/issues/
description = QR Code and Micro QR Code generator for Python 2 and Python 3
long_description = file: README.rst, CHANGES.rst
long_description_content_type= text/x-rst
license = BSD-3-Clause
license_file = LICENSE
author = Lars Heuer
author_email = heuer@semagia.com
platform = any
keywords =
QR Code, Micro QR Code, ISO/IEC 18004, ISO/IEC 18004:2006(E),
ISO/IEC 18004:2015(E), qrcode, QR, barcode, matrix, 2D, latex
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Graphics
Topic :: Printing
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
[options]
packages = segno
include_package_data = true
python_requires = >= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*
[options.package_data]
segno = py.typed, *.pyi
[options.data_files]
share/man/man1 =
man/segno.1
[options.entry_points]
console_scripts =
segno = segno.cli:main