forked from pklaus/brother_ql
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (65 loc) · 1.75 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
[project]
name = "brother_ql_next"
version = "0.11.3"
description = "Python package to talk to Brother QL label printers"
readme = "README.md"
authors = [
{ name = "Philipp Klaus", email = "philipp.l.klaus@web.de" },
{ name = "LunarEclipse", email = "luna@lunareclipse.zone" },
]
maintainers = [
{ name = "LunarEclipse", email = "luna@lunareclipse.zone" },
]
license = { text = "GPL-3.0-only" }
requires-python = ">=3.9"
dependencies = [
"click",
"future",
"packbits",
"pillow>=3.3.0",
"pyusb",
"attrs",
"typing;python_version<\"3.5\"",
"enum34;python_version<\"3.4\"",
"jsons",
]
keywords = [
"Brother",
"Label",
"Printer",
"QL-500",
"QL-550",
"QL-560",
"QL-570",
"QL-600",
"QL-700",
"QL-710W",
"QL-720NW",
"QL-800",
"QL-810W",
"QL-820NWB",
"QL-1050",
"QL-1060N",
"QL-1100",
"QL-1100NWB",
"QL-1115NWB",
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: System :: Hardware :: Hardware Drivers",
]
[project.scripts]
brother_ql = "brother_ql.cli:cli"
brother_ql_analyse = "brother_ql.brother_ql_analyse:main"
brother_ql_create = "brother_ql.brother_ql_create:main"
brother_ql_print = "brother_ql.brother_ql_print:main"
brother_ql_debug = "brother_ql.brother_ql_debug:main"
brother_ql_info = "brother_ql.brother_ql_info:main"
[project.urls]
repository = "https://github.com/LunarEclipse363/brother_ql_next"
changelog = "https://github.com/LunarEclipse363/brother_ql_next/blob/main/CHANGELOG.md"