mirror of
https://github.com/Shawn-Shan/fawkes.git
synced 2024-12-22 07:09:33 +05:30
remove
Former-commit-id: 4bcd35be410bd6cd199e896b02177cfb2e3295e1 [formerly ee45140f36dc32593fef1a881e17df9db42bac58] Former-commit-id: 5a0672c7f4979ac4176fc1ff5fbeec590678868e
This commit is contained in:
parent
de75fceca7
commit
4a673d2842
@ -1,12 +0,0 @@
|
|||||||
import sys
|
|
||||||
|
|
||||||
if sys.version_info < (3, 0):
|
|
||||||
# Python 2
|
|
||||||
import Tkinter as tk
|
|
||||||
else:
|
|
||||||
# Python 3
|
|
||||||
import tkinter as tk
|
|
||||||
root = tk.Tk()
|
|
||||||
root.title("Sandwich")
|
|
||||||
tk.Button(root, text="Make me a Sandwich").pack()
|
|
||||||
tk.mainloop()
|
|
12
app/setup.py
12
app/setup.py
@ -1,12 +0,0 @@
|
|||||||
from setuptools import setup
|
|
||||||
|
|
||||||
APP = ['Sandwich.py']
|
|
||||||
DATA_FILES = []
|
|
||||||
OPTIONS = {'argv_emulation': True}
|
|
||||||
|
|
||||||
setup(
|
|
||||||
app=APP,
|
|
||||||
data_files=DATA_FILES,
|
|
||||||
options={'py2app': OPTIONS},
|
|
||||||
setup_requires=['py2app'],
|
|
||||||
)
|
|
Loading…
Reference in New Issue
Block a user