m-you-tk 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

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.
@@ -0,0 +1,74 @@
1
+ Metadata-Version: 2.4
2
+ Name: m-you-tk
3
+ Version: 0.1.3
4
+ Summary: Material You components for Tkinter
5
+ Author-email: logic-break <abibasqabiba@email.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: Pillow>=9.0.0
10
+ Dynamic: license-file
11
+
12
+ # About
13
+
14
+ A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
15
+ It was made for black theme, for best look use #1C1B1F background
16
+
17
+ ## Documentation
18
+
19
+ The full documentation for this library is provided as a **standalone Windows application** for your convenience.
20
+
21
+ ### How to open:
22
+ 1. Locate `docs.exe` in the root directory.
23
+ 2. Run it to view the documentation in a dedicated window (no browser needed).
24
+
25
+ > On linux, use wine (bad idea) or go to docs folder and open index.html
26
+
27
+ ---
28
+
29
+ ## 🛠 Quick Installation
30
+
31
+ ```bash
32
+ pip install m-you-tk
33
+ ```
34
+ # Usage
35
+ ```python
36
+ from m_you import (
37
+ MaterialInput,
38
+ MaterialButton,
39
+ MaterialDropdown,
40
+ MaterialSwitch,
41
+ MaterialToast,
42
+ MaterialCheckbox,
43
+ MaterialSlider,
44
+ MaterialRadioButton
45
+ )
46
+ """ or use this:
47
+ from m_you import MaterialInput
48
+ from m_you import MaterialButton
49
+ from m_you import MaterialDropdown
50
+ from m_you import MaterialSwitch
51
+ from m_you import MaterialToast
52
+ from m_you import MaterialSlider
53
+ from m_you import MaterialCheckbox
54
+ from m_you import MaterialRadioButton
55
+ """
56
+ import tkinter as tk
57
+
58
+ root = tk.Tk()
59
+ root.geometry("400x300")
60
+ root.configure(bg="#1C1B1F")
61
+ btn = MaterialButton(root, text="Click Me!", command=lambda: print("Hello!"))
62
+ btn.pack(pady=20)
63
+
64
+ root.mainloop()
65
+ ```
66
+
67
+ ## Icons avaible:
68
+ edit, settings, home, search, favorite, delete, add, check, close, menu, person, share, sound, wifi, baterry, camera, folder, email, clock
69
+
70
+ ### Changelog:
71
+ 0.1.0 - first release
72
+ 0.1.1 - bug fixes
73
+ 0.1.2 - added README file
74
+ 0.1.3 - now docs are standalone .exe for windows users
@@ -8,8 +8,8 @@ m_you/slider.py,sha256=2C5vBlYDew3mTNZ-_MPwLk17BRTS7jo8ub2aAS7l92Y,3930
8
8
  m_you/switch.py,sha256=SzkQ18WCjeFCM4_8LDmFdKb60VmOv1dgse3qbfv9kFU,3266
9
9
  m_you/toast.py,sha256=b7PgQ-jD2yu-bxt-LIcugVCO-ZJ5fYOc9jXAvlhkRVM,3152
10
10
  m_you/assets/material.ttf,sha256=7xSfCL3S_wmk4shXNHa3sPP7sVtiOVSt5ZiZ5xdb7do,356840
11
- m_you_tk-0.1.2.dist-info/licenses/LICENSE,sha256=TDKOBOHBEBuzqtr9pyXbQFHpn25BV_RXV8jtZn_6k9w,809
12
- m_you_tk-0.1.2.dist-info/METADATA,sha256=e_7RBvISHAAQYGpQ1G9w1hbniDUHvbEXfmsm4lIAzjw,826
13
- m_you_tk-0.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
14
- m_you_tk-0.1.2.dist-info/top_level.txt,sha256=4nLhyeoOyjYFohyBd3kKqECvqrsYZ-qkzxE2RzZb2Qg,6
15
- m_you_tk-0.1.2.dist-info/RECORD,,
11
+ m_you_tk-0.1.3.dist-info/licenses/LICENSE,sha256=TDKOBOHBEBuzqtr9pyXbQFHpn25BV_RXV8jtZn_6k9w,809
12
+ m_you_tk-0.1.3.dist-info/METADATA,sha256=C1FFV5OzeQVjGcDRWmANn55EKExGrrbiOq50svwFFdg,1949
13
+ m_you_tk-0.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
14
+ m_you_tk-0.1.3.dist-info/top_level.txt,sha256=4nLhyeoOyjYFohyBd3kKqECvqrsYZ-qkzxE2RzZb2Qg,6
15
+ m_you_tk-0.1.3.dist-info/RECORD,,
@@ -1,29 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: m-you-tk
3
- Version: 0.1.2
4
- Summary: Material You components for Tkinter
5
- Author-email: logic-break <abibasqabiba@email.com>
6
- Requires-Python: >=3.7
7
- Description-Content-Type: text/markdown
8
- License-File: LICENSE
9
- Requires-Dist: Pillow>=9.0.0
10
- Dynamic: license-file
11
-
12
- # 🎨 M-YOU-TK
13
-
14
- A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
15
-
16
- ## 📖 Documentation
17
-
18
- The full documentation for this library, including component references, installation guides, and code examples, is available in the **offline HTML documentation** file.
19
-
20
- ### 🚀 How to open:
21
- 1. Locate the `documentation.html` file in the root directory.
22
- 2. Double-click to open it in your preferred web browser.
23
-
24
- ---
25
-
26
- ## 🛠 Quick Installation
27
-
28
- ```bash
29
- pip install m-you-tk