From 913708329ed0870e1b1fc12e76a29753f124ac54 Mon Sep 17 00:00:00 2001 From: shakasan Date: Sat, 30 Sep 2017 12:11:45 +0200 Subject: [PATCH] cx_Freeze build setup file added --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py 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")], +)