Add initial implementation of SimpleGuardHome web app with configuration and dependencies

This commit is contained in:
pacnpal
2025-01-28 14:46:36 +00:00
parent a4a1d4d379
commit e44a6685c8
9 changed files with 535 additions and 5 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
from setuptools import setup, find_packages
setup(
name="simpleguardhome",
version="0.1.0",
packages=find_packages(),
include_package_data=True,
package_data={
"simpleguardhome": ["templates/*"]
},
install_requires=[
"fastapi",
"uvicorn",
"python-dotenv",
"httpx",
"pydantic",
"jinja2",
],
)