cx_Freeze build setup file added

This commit is contained in:
shakasan 2017-09-30 12:11:45 +02:00
parent a3b8963b9d
commit 913708329e

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
"""
mozDefrag cx_Freeze setup file
"""
from cx_Freeze import setup, Executable
setup(
name="mozDefrag",
version="0.1",
description="defrag Firefox/Thunderbird's sqlite DB for users/profiles",
executables=[Executable("mozDefrag.py")],
)