-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (104 loc) · 3.04 KB
/
pyproject.toml
File metadata and controls
116 lines (104 loc) · 3.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aztec-py"
version = "1.2.1"
description = "GS1 2027-compliant pure-Python Aztec Code generator. FLG(0) Reader Initialisation, batch encoding, SVG/PDF/PNG, CLI, boarding passes, GS1 labels. ISO 24778."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "greyllmmoder" },
]
keywords = [
"aztec", "aztec-code", "aztec-barcode", "aztec-code-python",
"barcode", "barcode-generator", "barcode-api", "python-barcode",
"2d-barcode", "qr-code", "qr-code-alternative",
"iso-24778", "gs1", "gs1-2027", "gs1-compliant", "gs1-aztec", "gs1-barcode",
"iata-bcbp", "boarding-pass", "boarding-pass-barcode",
"drug-serialization", "healthcare-barcode", "supply-chain",
"label-printing", "batch-barcode", "svg-barcode", "aztec-rune",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Manufacturing",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics",
"Topic :: Office/Business",
"Topic :: Printing",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
image = [
"pillow>=8.0",
]
svg = [
"lxml>=4.9",
]
pdf = [
"fpdf2>=2.7",
"pillow>=8.0",
]
decode = [
"zxing>=1.0.4",
]
decode-fast = [
"zxingcpp>=2.2",
"pillow>=8.0",
]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"hypothesis>=6.0",
"mypy>=1.0",
"ruff>=0.5",
"pillow>=8.0",
"fpdf2>=2.7",
]
[project.urls]
Homepage = "https://github.com/greyllmmoder/python-aztec"
Documentation = "https://github.com/greyllmmoder/python-aztec#readme"
Changelog = "https://github.com/greyllmmoder/python-aztec/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/greyllmmoder/python-aztec/issues"
Source = "https://github.com/greyllmmoder/python-aztec"
Upstream = "https://github.com/dlenski/aztec_code_generator"
[project.scripts]
aztec = "aztec_py.__main__:cli_main"
[tool.setuptools]
py-modules = ["aztec_code_generator"]
[tool.setuptools.packages.find]
include = ["aztec_py*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=aztec_py --cov-report=term-missing --cov-fail-under=90"
[tool.coverage.run]
source = ["aztec_py"]
branch = true
[tool.mypy]
python_version = "3.9"
strict = true
files = ["aztec_py"]
[[tool.mypy.overrides]]
module = ["aztec_py.core"]
ignore_errors = true
[[tool.mypy.overrides]]
module = ["aztec_py.__main__"]
disallow_untyped_calls = false
[tool.ruff]
target-version = "py39"
line-length = 100