-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
43 lines (32 loc) · 1.04 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
[tool.poetry]
name = "swiftguard"
version = "0.0.2"
description = "Anti-forensic macOS application designed to safeguard your system by monitoring USB ports"
authors = [
"Lennart Haack <lennart-haack@mail.de>"
]
keywords = ["security", "opsec", "anti-forensics", "macOS", "usb", "monitoring", "physical-security"]
license = "GNU General Public License v3 (GPLv3)"
readme = "README.md"
repository = "https://github.com/Lennolium/swiftGuard"
include = ["src/swiftguard/swiftguard.ini"]
[tool.poetry.scripts]
swiftguard = "swiftguard.cli:main"
swiftguardgui = "swiftguard.app:main"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
PySide6 = "^6.5.2"
PySide6-Addons = "^6.5.2"
PySide6-Essentials = "^6.5.2"
pyoslog = "^1.1.0"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pyinstaller = "^6.0.0"
pyinstaller-hooks-contrib = "^2023.9"
pytest = "^6.2.5"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Lennolium/swiftGuard/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"