mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-20 12:31:16 -05:00
22 lines
489 B
Python
22 lines
489 B
Python
from setuptools import setup, find_packages
|
|
from pathlib import Path
|
|
|
|
setup(
|
|
name="simpleguardhome",
|
|
version="0.1.0",
|
|
packages=find_packages(where="src"),
|
|
package_dir={"": "src"},
|
|
include_package_data=True,
|
|
package_data={
|
|
"simpleguardhome": ["templates/*", "favicon.ico"]
|
|
},
|
|
python_requires=">=3.7",
|
|
install_requires=[
|
|
"fastapi",
|
|
"uvicorn",
|
|
"python-dotenv",
|
|
"httpx",
|
|
"pydantic",
|
|
"jinja2",
|
|
],
|
|
) |