Ankit93's picture
Add application file
29572ad
Raw
History Blame Contribute Delete
207 Bytes
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)]
)