-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (29 loc) · 977 Bytes
/
setup.py
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
30
31
32
33
34
import sys
from cx_Freeze import setup, Executable
includes = ['syntax', 'atexit']
includefiles = ['gui\warningmessagebox.py',
'gui\customtextedit.py',
'gui\pdfviewer.py'
'tab2chordpro\Transpose.py']
#includes = []
build_exe_options = {"packages": ["re"],
"includes": includes,
"include_files": includefiles}
base = None
if sys.platform == "win32":
base = "Win32GUI"
setup(
name='QtChordii',
version='0.1',
packages=[''],
url='',
license='GPLv3',
author='Johan Reitan',
author_email='johan.reitan@gmail.com',
description='A simple GUI for Chordii making organizing of songbooks easier.',
options={"build_exe": build_exe_options},
executables=[Executable("main.py",
shortcutName="QtChordii",
shortcutDir="DesktopFolder",
base=base)], requires=['PyQt5']
)