File: pyproject.toml

package info (click to toggle)
segno 1.6.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,068 kB
  • sloc: python: 9,936; makefile: 162; javascript: 16
file content (74 lines) | stat: -rw-r--r-- 1,937 bytes parent folder | download
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
[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']
lint.ignore = ['I001', 'RUF022']
exclude = ['examples', 'tests']
line-length = 120