mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2026-04-15 00:50:47 -04:00
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>
32 lines
626 B
TOML
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"
|
|
] |