forked from ogelpre/labelprinterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.07 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
[tool.poetry]
name = "BrotherLabelPrinterControl"
version = "0.8.1"
description = "A library for creating and printing labels for Brother P-Touch devices"
authors = [
"Adrian Tschira <[email protected]>",
"Benedikt Neuffer <[email protected]>",
"Ben Burwood <[email protected]>"
]
license = "Apache License, Version 2.0"
readme = "README.md"
packages = [
{include = "labelprinterkit"}
]
[tool.poetry.dependencies]
python = "^3.9"
pillow = "^10.0.0"
pyusb = "^1.2.1"
packbits = "^0.6"
pyserial = {version = "^3.5", optional = true}
qrcode = {version = "^7.4.2", optional = true, extras = ["pil"]}
setuptools = "^68.0.0"
pysnmp = {version = "^4.4.12", optional = true}
#pin pyasn because pysnmp does not work with newer versions
pyasn1 = {version = "^0.4.8", optional = true}
[tool.poetry.extras]
bluetooth = ["pyserial"]
qrcode = ["qrcode"]
snmp = ["pysnmp", "pyasn1"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
types-setuptools = "^68.1.0.0"
types-pillow = "^10.0.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"