Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit ce20627

Browse files
3.5 Update
1 parent 0d0809c commit ce20627

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

ArchitectsDaughter.ttf

47.5 KB
Binary file not shown.

Erin Hunter Book Chooser Main Window.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
window = Tk()
55
window.title("Erin Hunter Book Chooser")
66

7-
label = Label( window, text = "Welcome to the Erin Hunter Book Chooser.\nPlease select your favorite animal below and the app will select your favorite Erin Hunter authored book.\n You can visit the website link displayed to learn more afterwards.\n")
7+
label = Label( window, font = ("architects daughter", 11, "normal"), text = "Welcome to the Erin Hunter Book Chooser.\nPlease select your favorite animal below and the app will select your favorite Erin Hunter authored book.\n You can visit the website link displayed to learn more afterwards.\n")
88

9-
label.pack( padx = 300, pady = 100 )
9+
label.pack( padx = 200, pady = 25 )
1010

1111

1212
frame = Frame(window)
1313

1414
book = StringVar()
1515

1616

17-
radio_1 = Radiobutton( frame, text='Cats', \
17+
radio_1 = Radiobutton( frame, font = ("architects daughter", 10, "normal"), text='Cats', \
1818
variable = book, value = ' Warriors by Erin Hunter.\nVisit warriorscats.com for more information.')
19-
radio_2 = Radiobutton( frame, text='Bears', \
19+
radio_2 = Radiobutton( frame, font = ("architects daughter", 10, "normal"), text='Bears', \
2020
variable = book, value = ' Seekers by Erin Hunter.\nVisit seekrsbears.com for more information.')
21-
radio_3 = Radiobutton(frame, text='Dogs', \
21+
radio_3 = Radiobutton(frame, font = ("architects daughter", 10, "normal"), text='Dogs', \
2222
variable = book, value = ' Survivors by Erin Huter.\nVisit survivorsdogs.com for more information.')
2323

2424
radio_1.select()
@@ -27,13 +27,13 @@ def dialog():
2727
box.showinfo('Erin Hunter Book Selection', \
2828
'Your Erin Hunter Book selection is:' + book.get() )
2929

30-
btn = Button( frame, text = 'Choose', command = dialog)
30+
btn = Button( frame, font = ("architects daughter", 10, "normal"), text = 'Choose', command = dialog)
3131

3232
btn.pack(side = RIGHT, padx = 5)
3333
radio_1.pack(side = LEFT)
3434
radio_2.pack(side = LEFT)
3535
radio_3.pack(side = LEFT)
36-
frame.pack( padx = 30, pady = 30 )
36+
frame.pack( padx = 30, pady = 15 )
3737

3838
window.mainloop()
3939

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
base = None
55
if sys.platform == 'win32' : base = 'Win32GUI'
66

7+
opts = { 'include_files' : ['ArchitectsDaughter.ttf'] , 'includes' : ['re'] }
8+
79
setup( name = 'Erin Hunter Book Chooser' ,
8-
version = '3.0' ,
10+
version = '3.5' ,
911
description = 'Choose\'s Erin Hunter books.' ,
1012
author = 'William Vandergraaf' ,
1113
option = { 'build_exe' : opts } ,

setup_information.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
setup(
66
name='Erin Hunter Book Chooser',
7-
version='3.1',
7+
version='3.5',
88
author = 'William Vandergraaf',
99
author_email = 'willtheorangeguy@outlook.com',
10-
url = 'https://github.com/Dog-Face-Development/Erin-Hunter-Book-Chooser',
11-
license='Apache 2.0',
10+
url = 'https://github.com/dog-face-development/erin-hunter-book-chooser',
11+
license='MIT',
1212
description= "This program will select you favorite Erin Hunter authored book based on you favorite of three animals.",
1313
)

0 commit comments

Comments
 (0)