-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (17 loc) · 891 Bytes
/
setup.py
File metadata and controls
21 lines (17 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from cx_Freeze import setup, Executable
import os
os.environ['TCL_LIBRARY'] = "C:\\LOCAL_TO_PYTHON\\Python35-32\\tcl\\tcl8.6"
os.environ['TK_LIBRARY'] = "C:\\LOCAL_TO_PYTHON\\Python35-32\\tcl\\tk8.6"
include_files = ['Logo.ico', 'BookIT_Instructions.pdf', 'Books.csv', 'Users.csv', 'Logo.png', ]
setup(
name = "BookIT Library DataBase Organizer",
version = "0.0.1",
console=['__main__.py'],
author = "Tejas Shah",
author_email = "tejas.shah1950@gmail.com",
description = ("FBLA 2018 Coding and Programming Challenge. A library database used to track student and teachers, check out/return "
"books, Fine users, and otherwise maintain a library."),
keywords = "library, database, organization, FBLA",
executables=[Executable('BookIT.py', base='Win32GUI')],
options={'build_exe':{'include_files': include_files}}
)