VPN/pyproject.toml
2025-10-20 13:44:33 +07:00

41 lines
722 B
TOML

[project]
name = "vpn-access-server"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"db>=0.1.1",
"mysql-connector-python>=8.0.33",
"utils>=1.0.2",
"fastapi>=0.111.0",
"uvicorn>=0.20.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
vpn-access-server = "cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["access", "scripts"]
include = ["main.py"]
[dependency-groups]
test = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
]