-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
81 lines (69 loc) · 1.94 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
80
81
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zebrafy"
dynamic = ["version"]
description = "Python library for converting PDF and images to Zebra Programming Language (ZPL)"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Manufacturing",
"Topic :: Printing",
]
dependencies = ["pillow", "pypdfium2>=4.8.0"]
requires-python = ">=3.8"
[project.optional-dependencies]
docs = [
"sphinx>=7.0.0",
"sphinx_autodoc_typehints>=2.0.0",
"sphinx_rtd_theme>=2.0.0",
]
test = [
"pytest-cov",
]
lint = [
"pre-commit",
]
build = [
"setuptools>=64",
"setuptools_scm>=8",
"wheel",
"build",
]
[[project.authors]]
name = "Miika Nissi"
email = "[email protected]"
[[project.maintainers]]
name = "Miika Nissi"
email = "[email protected]"
[project.license]
text = "LGPLv3"
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/miikanissi/zebrafy/"
Documentation = "https://zebrafy.readthedocs.io/"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = [ "zebrafy"]
namespaces = false
[tool.setuptools_scm]
version_file = "zebrafy/_version.py"
version_scheme = "no-guess-dev"
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 95"
[tool.coverage.run]
source = ["zebrafy"]