mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-19 20:11:14 -05:00
feat(docker): enhance Dockerfile and entrypoint with improved package verification and diagnostics
This commit is contained in:
6
setup.py
6
setup.py
@@ -1,14 +1,16 @@
|
||||
from setuptools import setup, find_packages
|
||||
from pathlib import Path
|
||||
|
||||
setup(
|
||||
name="simpleguardhome",
|
||||
version="0.1.0",
|
||||
packages=find_packages(where="src", include=["simpleguardhome*"]),
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
"simpleguardhome": ["templates/*"]
|
||||
"simpleguardhome": ["templates/*", "favicon.ico"]
|
||||
},
|
||||
python_requires=">=3.7",
|
||||
install_requires=[
|
||||
"fastapi",
|
||||
"uvicorn",
|
||||
|
||||
Reference in New Issue
Block a user