cx_Freeze build setup file added
This commit is contained in:
parent
a3b8963b9d
commit
913708329e
1 changed files with 13 additions and 0 deletions
13
setup.py
Normal file
13
setup.py
Normal 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")],
|
||||||
|
)
|
Loading…
Reference in a new issue