Spaces:
Runtime error
Runtime error
File size: 207 Bytes
29572ad | 1 2 3 4 5 6 7 8 9 10 | import sys
from cx_Freeze import setup, Executable
setup(
name="Face Recognition",
version="1.0",
description="Your application description",
executables=[Executable("app.py", base=None)]
)
|