forked from bcbnz/pylabels
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
56 lines (46 loc) · 1.16 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
[project]
name = "pylabels2"
dynamic = ["version"]
description = "Library to generate PDFs for printing labels"
readme = "README.md"
dependencies = ['reportlab']
requires-python = '>=3.12'
keywords = ['labels avery']
authors = [{name="Blair Bonnett"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
license = {file = "LICENSE"}
[tool.setuptools.packages.find]
where = ["pylabels"]
include = ["pylabels*"]
exclude = ["pylabels.demo*"]
namespaces = false # true by default
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
[tool.setuptools_scm]
version_file="_version.py"
[tool.black]
line-length = 95
target-version = ["py312"]
[tool.isort]
profile = "black"
py_version = "312"
skip = [".tox", ".eggs"]
[tool.coverage.run]
parallel = false
branch = true
source = ["pylabels"]
[tool.coverage.paths]
source = ["pylabels"]
[tool.coverage.report]
show_missing = true
skip_covered = true
omit = ["requirements.txt"]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]