28 lines
631 B
TOML
28 lines
631 B
TOML
[build-system]
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "vpn-egressctl"
|
|
version = "0.1.0"
|
|
description = "Declarative control plane for the sing-box VPN egress gateway"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
license = "MIT"
|
|
authors = [{name = "Flamy Studio"}]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
vpn-egressctl = "vpn_egressctl.cli:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|