26 lines
511 B
TOML
26 lines
511 B
TOML
[project]
|
|
name = "hysteria-panel"
|
|
version = "0.3.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"requests>=2.32.5",
|
|
"ttkbootstrap>=1.14.2",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
socks = [
|
|
"requests[socks]>=2.32.5",
|
|
]
|
|
|
|
[project.gui-scripts]
|
|
hysteria-panel = "hysteria_panel.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.21.1"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/hysteria_panel"]
|