summaryrefslogtreecommitdiff
path: root/cxf.py
blob: b861099962b9d4bdfb7ab49c5ce50377012893b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"],
        },
    },
)