Files
simpleguardhome/pyproject.toml
dependabot[bot] b56b0ab959 fix(deps): update setuptools requirement from >=64.0.0 to >=64.0.3
Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version.
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](https://github.com/pypa/setuptools/compare/v64.0.0...v64.0.3)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-version: 64.0.3
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-13 12:07:57 +00:00

32 lines
626 B
TOML

[build-system]
requires = ["setuptools>=64.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simpleguardhome"
version = "0.1.0"
description = "SimpleGuardHome - A lightweight AdGuardHome UI"
authors = [
{name = "SimpleGuardHome Team"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
dependencies = [
"fastapi",
"uvicorn",
"python-dotenv",
"httpx",
"pydantic",
"jinja2",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["simpleguardhome"]
[tool.setuptools.package-data]
simpleguardhome = [
"templates/*.html",
"favicon.ico"
]