-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
73 lines (57 loc) · 1.86 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "segno"
description = "QR Code and Micro QR Code generator for Python"
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 :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
"Topic :: Printing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dependencies = [
"importlib-metadata>=3.6.0; python_version < '3.10'",
]
[project.urls]
Homepage = "https://github.com/heuer/segno/"
Documentation = "https://segno.readthedocs.io/"
"Issue tracker" = "https://github.com/heuer/segno/issues/"
Changes = "https://github.com/heuer/segno/blob/master/CHANGES.rst"
[project.scripts]
segno = "segno.cli:main"
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_also = [
# Don't complain if non-runnable code isn't run:
"if __name__ == .__main__.:",
]
[tool.flit.sdist]
include = ["docs/", "tests/",
"LICENSE",
"*.rst", # CHANGES and README
"noxfile.py",
"MANIFEST.in",
"pyproject.toml"]
exclude = [".github", ".*", "sandbox/*"]
[tool.flit.external-data]
directory = "data"
[tool.ruff]
lint.select = ['E', 'F', 'N', 'W', 'UP', 'RUF']
exclude = ['examples', 'tests']
line-length = 120