-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 791 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from cx_Freeze import setup, Executable
options = {
"build_exe": {
"includes": ["asyncio.compat",
"asyncio.base_futures",
"asyncio.base_tasks",
"asyncio.base_subprocess",
"asyncio.proactor_events",
"asyncio.constants",
"asyncio.sslproto",
"asyncio.selector_events",
"asyncio.windows_utils",
"engineio.async_threading"],
"excludes": ["gevent"],
"include_files": ["static", "jdk.path", "LICENSE"]
}
}
setup(
name = "Java Play",
version = "1.1",
description = "A web-based Java Playground",
executables = [Executable("server.py")],
options = options)