FunctionGUI 0.5.0__tar.gz → 0.6.1__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.
@@ -21,8 +21,8 @@ def ScrollBar(root, widget, side="right", fill="y"):
21
21
  scrollbar.pack(side=side, fill=fill)
22
22
  a.config(yscrollcommand=scrollbar.set)
23
23
 
24
- def Label(parent, text="Default Text", font="Helvetica", size=12, color="black"):
25
- label = ttk.Label(parent, text=text, font = (font, size), foreground = color); label.pack();
24
+ def Label(parent, text="Default Text", font="Helvetica", size=12, color="black", wraplenght=2):
25
+ label = ttk.Label(parent, text=text, font = (font, size), foreground = color, wraplength=wraplenght); label.pack();
26
26
  return label
27
27
 
28
28
  def Place(widget, x, y):
@@ -14,6 +14,7 @@ from .FunctionGUI import (
14
14
  BulleanVar,
15
15
  ChexBox,
16
16
  add,
17
- Design
17
+ Design,
18
+ ScrollBar
18
19
 
19
20
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: FunctionGUI
3
- Version: 0.5.0
3
+ Version: 0.6.1
4
4
  Summary: A simple Tkinter GUI library with basic widgets and functionality.
5
5
  Home-page: https://github.com/aa425/FunctionGUI
6
6
  Author: Aaroh Charne
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: FunctionGUI
3
- Version: 0.5.0
3
+ Version: 0.6.1
4
4
  Summary: A simple Tkinter GUI library with basic widgets and functionality.
5
5
  Home-page: https://github.com/aa425/FunctionGUI
6
6
  Author: Aaroh Charne
@@ -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.5.0', # Start with an initial version
5
+ version='0.6.1', # 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',
File without changes
File without changes