m-you-tk 0.1.1__tar.gz → 0.1.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.
@@ -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
@@ -0,0 +1,63 @@
1
+ # About
2
+
3
+ A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
4
+ It was made for black theme, for best look use #1C1B1F background
5
+
6
+ ## Documentation
7
+
8
+ The full documentation for this library is provided as a **standalone Windows application** for your convenience.
9
+
10
+ ### How to open:
11
+ 1. Locate `docs.exe` in the root directory.
12
+ 2. Run it to view the documentation in a dedicated window (no browser needed).
13
+
14
+ > On linux, use wine (bad idea) or go to docs folder and open index.html
15
+
16
+ ---
17
+
18
+ ## 🛠 Quick Installation
19
+
20
+ ```bash
21
+ pip install m-you-tk
22
+ ```
23
+ # Usage
24
+ ```python
25
+ from m_you import (
26
+ MaterialInput,
27
+ MaterialButton,
28
+ MaterialDropdown,
29
+ MaterialSwitch,
30
+ MaterialToast,
31
+ MaterialCheckbox,
32
+ MaterialSlider,
33
+ MaterialRadioButton
34
+ )
35
+ """ or use this:
36
+ from m_you import MaterialInput
37
+ from m_you import MaterialButton
38
+ from m_you import MaterialDropdown
39
+ from m_you import MaterialSwitch
40
+ from m_you import MaterialToast
41
+ from m_you import MaterialSlider
42
+ from m_you import MaterialCheckbox
43
+ from m_you import MaterialRadioButton
44
+ """
45
+ import tkinter as tk
46
+
47
+ root = tk.Tk()
48
+ root.geometry("400x300")
49
+ root.configure(bg="#1C1B1F")
50
+ btn = MaterialButton(root, text="Click Me!", command=lambda: print("Hello!"))
51
+ btn.pack(pady=20)
52
+
53
+ root.mainloop()
54
+ ```
55
+
56
+ ## Icons avaible:
57
+ edit, settings, home, search, favorite, delete, add, check, close, menu, person, share, sound, wifi, baterry, camera, folder, email, clock
58
+
59
+ ### Changelog:
60
+ 0.1.0 - first release
61
+ 0.1.1 - bug fixes
62
+ 0.1.2 - added README file
63
+ 0.1.3 - now docs are standalone .exe for windows users
@@ -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
@@ -1,5 +1,6 @@
1
1
  LICENSE
2
2
  MANIFEST.in
3
+ README.md
3
4
  pyproject.toml
4
5
  setup.py
5
6
  m_you/__init__.py
@@ -4,7 +4,7 @@ build-backend = "setuptools.build-meta"
4
4
 
5
5
  [project]
6
6
  name = "m-you-tk"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  authors = [{name = "logic-break", email = "abibasqabiba@email.com"}]
9
9
  description = "Material You components for Tkinter"
10
10
  readme = "README.md"
m_you_tk-0.1.1/PKG-INFO DELETED
@@ -1,10 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: m-you-tk
3
- Version: 0.1.1
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
@@ -1,10 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: m-you-tk
3
- Version: 0.1.1
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes