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