29 lines
730 B
TOML
29 lines
730 B
TOML
[project]
|
|
name = "sp-hydra-veil-gui"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name = "Simplified Privacy" },
|
|
]
|
|
description = "A graphical user interface that implements core client logic."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
dependencies = [
|
|
"sp-hydra-veil-core == 1.0.0",
|
|
"pyperclip ~= 1.9.0",
|
|
"pyqt6 ~= 6.7.1",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-gui"
|
|
Issues = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-gui/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["gui"]
|