diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5893ce0 --- /dev/null +++ b/setup.py @@ -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")], +)