-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
69 lines (56 loc) · 2 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qrcode-artistic"
description = "Artistic (Micro) QR Code plugin for Segno"
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE"}
authors = [{"name" = "Lars Heuer", email = "heuer@semagia.com"}]
requires-python = ">= 3.5"
keywords = ["QR Code", "Micro QR Code", "ISO/IEC 18004", "ISO/IEC 18004:2006(E)",
"ISO/IEC 18004:2015(E)", "qrcode", "QR", "barcode", "matrix", "2D",]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics",
"Topic :: Printing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"segno>=1.0.2",
"Pillow",
]
[project.entry-points."segno.plugin.converter"]
pil = "qrcode_artistic:write_pil"
artistic = "qrcode_artistic:write_artistic"
[project.optional-dependencies]
svg = ["cairosvg"]
[project.urls]
Homepage = "https://github.com/heuer/qrcode-artistic/"
Documentation = "https://segno.readthedocs.io/en/latest/artistic-qrcodes.html"
Repository = "https://github.com/heuer/qrcode-artistic.git"
Changelog = "https://github.com/heuer/qrcode-artistic/blob/master/CHANGES.rst"
"Issue Tracker" = "https://github.com/heuer/qrcode-artistic/issues"
[tool.coverage.run]
branch = true
[tool.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 = "qrcode_art*"