summaryrefslogtreecommitdiff
path: root/cxf.py
diff options
context:
space:
mode:
Diffstat (limited to 'cxf.py')
-rw-r--r--cxf.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/cxf.py b/cxf.py
new file mode 100644
index 00000000..b8610999
--- /dev/null
+++ b/cxf.py
@@ -0,0 +1,14 @@
+from cx_Freeze import setup, Executable
+
+setup(
+ name="Continue",
+ version="0.1",
+ description="Continue Server",
+ executables=[Executable("run.py")],
+
+ options={
+ "build_exe": {
+ "excludes": ["unnecessary_module"],
+ },
+ },
+)