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
|
[build-system]
requires = ["setuptools>=40.8.0", "wheel", 'pyusb', 'pyserial', 'pillow', 'qrcode', "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.black]
extend-exclude = 'capabilities-data'
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --cov escpos --cov-report=xml"
testpaths = [
"test",
"src",
"src/escpos",
"escpos",
]
[tool.setuptools_scm]
[[tool.mypy.overrides]]
module = ["pytest",
"jaconv",
"scripttest",
"barcode.*",
"qrcode",
"usb.*",
"cups",
"win32print"
]
ignore_missing_imports = true
[project]
name = "python-escpos"
version = "3.0"
description = "Python ESC/POS is a library which lets the user have access to all those printers handled by ESC/POS commands, as defined by Epson, from a Python application."
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "MIT"}
keywords = ["egg", "bacon", "sausage", "tomatoes", "Lobster Thermidor"]
authors = [
{email = "manpaz@bashlinux.com"},
{name = "Manuel F Martinez and others"}
]
dynamic = ["classifiers", "scripts", "optional-dependencies", "dependencies"]
maintainers = [
{name = "Bill Sideris", email = "bill88t@feline.gr"}
]
[project.urls]
"Homepage" = "https://github.com/python-escpos/python-escpos"
"Issue Tracker" = "https://github.com/python-escpos/python-escpos/issues"
|