-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (38 loc) · 1.05 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
[tool.poetry]
name = "brother_printer_fwupd"
version = "0.7.0"
description = "Script to update the firmware of some Brother printers (e. g. MFC)."
authors = ["sedrubal <[email protected]>"]
repository = "https://github.com/sedrubal/brother_printer_fwupd.git"
license = "GPL-3.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pysnmp = "^4.4.12"
pyasn1 = "^0.5.1"
requests = "^2.31.0"
BeautifulSoup4 = "^4.12.0"
Gooey = { version = "^1.0.8", optional = true }
lxml = "^4.9.0"
zeroconf = { version = "^0.28.8", optional = true }
termcolor = "^1.1.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
ruff = "^0.1.15"
isort = "^5.13.0"
pre-commit = "^3.6.0"
black = "^23.12.0"
pylint = "^3.1.0"
types-requests = "^2.31.0"
types-termcolor = "^1.1.6"
pyre-check = "^0.9.19"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
graphical = ["Gooey"]
autodiscover = ["zeroconf"]
[tool.poetry.scripts]
brother_printer_fwupd = 'brother_printer_fwupd.__main__:main'
[tool.ruff]
line-length = 100