Skip to content

Commit

Permalink
Package can be installed with pip now
Browse files Browse the repository at this point in the history
  • Loading branch information
Claydough6 committed May 5, 2021
1 parent 8c26f55 commit a0a2053
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
7 changes: 3 additions & 4 deletions resolution_gui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from gui_main import ResolutionGUI
from .gui_main import ResolutionGUI

# start up the app
if __name__ == "__main__":
app = ResolutionGUI()
app.start()
app = ResolutionGUI()
app.start()
8 changes: 4 additions & 4 deletions resolution_gui/gui_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
from ttkthemes import ThemedTk
from tkinter import filedialog

from resolution_canvas import ResolutionCanvas
from statement_frame import StatementFrame
from resolution_engine import ResolutionEngine
from info_window import InfoWindow
from .resolution_canvas import ResolutionCanvas
from .statement_frame import StatementFrame
from .resolution_engine import ResolutionEngine
from .info_window import InfoWindow

class ResolutionGUI():
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion resolution_gui/resolution_canvas.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from tkinter import *
from tkinter import ttk

from clause_frame import ClauseFrame
from .clause_frame import ClauseFrame

class ResolutionCanvas(Canvas):
def __init__(self, master, app, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion resolution_gui/statement_frame.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from tkinter import *
from tkinter import ttk

from edit_listbox import EditListbox
from .edit_listbox import EditListbox

class StatementFrame(ttk.Frame):
def __init__(self, master, app, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
license="MIT",
packages=["resolution_gui"],
install_requires=[
"tkinter",
"ttkthemes",
"pyprover",
"pyparsing",
],
zip_safe=False)

0 comments on commit a0a2053

Please sign in to comment.