Menu

[8f66b6]: / setup.py  Maximize  Restore  History

Download this file

31 lines (25 with data), 821 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
26
27
28
29
from cx_Freeze import setup, Executable
import AppConfig
CodeBeagle=Executable(
script = "CodeBeagle.pyw",
base = "Win32GUI",
targetName = "CodeBeagle.exe",
icon = "resources/CodeBeagle.ico"
)
UpdateIndex=Executable(
script = "UpdateIndex.py",
targetName = "UpdateIndex.exe"
)
options = {
"build_exe": {
"zip_include_packages": "logging,http,collections,encodings,sqlite3,unittest,urllib,asyncio,concurrent,dialogs,email,importlib",
"excludes": "distutils,html,multiprocessing,lib2to3,xml,test,tkinter,pydoc_data,bz2,queue,lzma,ssl"
}
}
setup(
options=options,
name = AppConfig.appName,
version = AppConfig.appVersion,
description = "CodeBeagle - A tool to search source code based on a full text index",
executables = [CodeBeagle, UpdateIndex]
)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.