This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (68 loc) · 1.48 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
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "qrpy"
version = "0.1.0"
description = "Encode and Decode basic QR codes"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["qr", "qrcode", "encode", "decode"]
license = { text = "MIT" }
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
]
dependencies = ["Pillow", "pyzbar", "qrcode"]
[project.urls]
Homepage = "https://github.com/bradenhilton/qrpy"
Repository = "https://github.com/bradenhilton/qrpy"
[project.optional-dependencies]
dev = ["mypy", "ruff", "types-Pillow"]
[project.scripts]
qrpy = "qrpy:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {}
[tool.mypy]
python_version = "3.8"
[[tool.mypy.overrides]]
module = "pyzbar.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "qrcode.*"
ignore_missing_imports = true
[tool.ruff]
line-length = 79
ignore = ["ANN101", "ANN102"]
[tool.ruff.lint]
select = [
"A",
"B",
"C",
"E",
"F",
"I",
"N",
"Q",
"W",
"ANN",
"ARG",
"COM",
"FA",
"PL",
"PTH",
"SIM",
"TCH",
"UP",
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "pep621"
major_version_zero = true