@@ -1 +1,3 @@
*.pyc
+dist/*
+build/*
@@ -8,7 +8,6 @@ import subprocess
from collections import defaultdict
from inc.basefuncs import *
-from inc.settings import *
DIR_MINE = os.path.realpath(sys.argv[0]).rpartition(os.sep)[0]
DIR_CUR = os.path.realpath(".")
@@ -0,0 +1,4 @@
+from distutils.core import setup
+import py2exe
+
+setup(console=["make.py"])