mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-20 04:21:13 -05:00
23 lines
455 B
TOML
23 lines
455 B
TOML
[build-system]
|
|
requires = ["setuptools>=64.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "simpleguardhome"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.7"
|
|
dependencies = [
|
|
"fastapi",
|
|
"uvicorn",
|
|
"python-dotenv",
|
|
"httpx",
|
|
"pydantic",
|
|
"jinja2",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = {find = {where = ["src"]}}
|
|
|
|
[tool.setuptools.package-data]
|
|
simpleguardhome = ["templates/*", "favicon.ico"] |