-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 1.21 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 = "devicesinlan"
version = "2.0.0"
description = "Find devices in a LAN and allows to make a list of known devices in order to detect not allowed ones"
authors = ["turulomio <[email protected]>"]
license = "GPL-3.0 license"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<4"
colorama = "^0.4.6"
PyQt6 = "^6.7.1"
scapy = "^2.5.0"
pydicts = "^0.16.0"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
poetry = "^1.8.3"
poethepoet = "^0.28.0"
qt6-tools = "^6.5.0.1.3"
mangenerator = "^0.4.0"
pytest = "^8.3.3"
coverage = "^7.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
devicesinlan = 'devicesinlan.devicesinlan:main_console'
devicesinlan_gui = 'devicesinlan.devicesinlan:main_gui'
[tool.poe.tasks]
release = { script = "devicesinlan.poethepoet:release" }
translate = { script = "devicesinlan.poethepoet:translate" }
compile = { script = "devicesinlan.poethepoet:compile" }
reusing = { script = "devicesinlan.poethepoet:reusing" }
pyinstaller = { script = "devicesinlan.poethepoet:pyinstaller" }
statistics_server = { script = "devicesinlan.poethepoet:statistics_server" }
tests = { script ="devicesinlan.poethepoet:tests" }