FunctionGUI 0.6.2__tar.gz → 0.6.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI/FunctionGUI.py +2 -2
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI.egg-info/PKG-INFO +1 -1
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/PKG-INFO +1 -1
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/setup.py +2 -1
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI/__init__.py +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI.egg-info/SOURCES.txt +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI.egg-info/dependency_links.txt +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI.egg-info/requires.txt +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/FunctionGUI.egg-info/top_level.txt +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/README.md +0 -0
- {FunctionGUI-0.6.2 → FunctionGUI-0.6.3}/setup.cfg +0 -0
@@ -33,8 +33,8 @@ def Place(widget, x, y):
|
|
33
33
|
def Font(name = 'arial', size = 20, weight = "bold"):
|
34
34
|
font = tkfont.Font(name = name, size = size, weight = weight)
|
35
35
|
return font
|
36
|
-
def StrVar():
|
37
|
-
v = tk.StringVar()
|
36
|
+
def StrVar(master, string):
|
37
|
+
v = tk.StringVar(master, string)
|
38
38
|
return v
|
39
39
|
|
40
40
|
def OpenFile(title):
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='FunctionGUI', # Replace with your library name
|
5
|
-
version='0.6.
|
5
|
+
version='0.6.3', # Start with an initial version
|
6
6
|
description='A simple Tkinter GUI library with basic widgets and functionality.',
|
7
7
|
long_description=open('README.md').read(), # Make sure you have a README.md file
|
8
8
|
long_description_content_type='text/markdown',
|
@@ -15,6 +15,7 @@ setup(
|
|
15
15
|
'ttkbootstrap'
|
16
16
|
],
|
17
17
|
classifiers=[
|
18
|
+
|
18
19
|
'Programming Language :: Python :: 3',
|
19
20
|
'License :: OSI Approved :: MIT License',
|
20
21
|
'Operating System :: OS Independent',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|