aik 0.1.0__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.
aik-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: aik
3
+ Version: 0.1.0
4
+ Summary: AIK - Astro Imagine Kinter
5
+ Author: Astrozoomzinho
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: customtkinter
9
+
10
+ aik
11
+ aik
12
+ aik
13
+ aik
14
+ aik
15
+ aik
16
+ aik
17
+ aik
18
+ aik
19
+ aik
20
+ aik
21
+ aik
22
+ aik
23
+ aik
24
+ aik
25
+ aik
26
+ aik
27
+ aik
28
+ aik
29
+ aik
30
+ aik
31
+ aik
32
+ aik
33
+
aik-0.1.0/README.md ADDED
@@ -0,0 +1,24 @@
1
+ aik
2
+ aik
3
+ aik
4
+ aik
5
+ aik
6
+ aik
7
+ aik
8
+ aik
9
+ aik
10
+ aik
11
+ aik
12
+ aik
13
+ aik
14
+ aik
15
+ aik
16
+ aik
17
+ aik
18
+ aik
19
+ aik
20
+ aik
21
+ aik
22
+ aik
23
+ aik
24
+
@@ -0,0 +1,5 @@
1
+ from .window import Window
2
+ from .button import Button
3
+ from .label import Label
4
+
5
+ __version__ = "0.1.0"
Binary file
@@ -0,0 +1,10 @@
1
+ import customtkinter as ctk
2
+
3
+
4
+ class Button(ctk.CTkButton):
5
+ def __init__(self, parent, text="Button", command=None):
6
+ super().__init__(
7
+ master=parent,
8
+ text=text,
9
+ command=command
10
+ )
aik-0.1.0/aik/label.py ADDED
@@ -0,0 +1,9 @@
1
+ import customtkinter as ctk
2
+
3
+
4
+ class Label(ctk.CTkLabel):
5
+ def __init__(self, parent, text=""):
6
+ super().__init__(
7
+ master=parent,
8
+ text=text
9
+ )
@@ -0,0 +1,30 @@
1
+ import ctypes
2
+ from pathlib import Path
3
+
4
+ # Identificação do aplicativo no Windows
5
+ ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(
6
+ "Ibot.aik"
7
+ )
8
+
9
+ import customtkinter as ctk
10
+
11
+
12
+ class Window(ctk.CTk):
13
+ def __init__(self, title="AIK", width=600, height=400):
14
+ super().__init__()
15
+
16
+ self.title(title)
17
+ self.geometry(f"{width}x{height}")
18
+
19
+ # Logo do AIK
20
+ icon_path = Path(__file__).parent / "aik_hq.ico"
21
+
22
+ print("Procurando ícone em:")
23
+ print(icon_path)
24
+ print("Existe?", icon_path.exists())
25
+
26
+ if icon_path.exists():
27
+ self.iconbitmap(str(icon_path))
28
+
29
+ def run(self):
30
+ self.mainloop()
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: aik
3
+ Version: 0.1.0
4
+ Summary: AIK - Astro Imagine Kinter
5
+ Author: Astrozoomzinho
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: customtkinter
9
+
10
+ aik
11
+ aik
12
+ aik
13
+ aik
14
+ aik
15
+ aik
16
+ aik
17
+ aik
18
+ aik
19
+ aik
20
+ aik
21
+ aik
22
+ aik
23
+ aik
24
+ aik
25
+ aik
26
+ aik
27
+ aik
28
+ aik
29
+ aik
30
+ aik
31
+ aik
32
+ aik
33
+
@@ -0,0 +1,12 @@
1
+ README.md
2
+ pyproject.toml
3
+ aik/__init__.py
4
+ aik/aik_hq.ico
5
+ aik/button.py
6
+ aik/label.py
7
+ aik/window.py
8
+ aik.egg-info/PKG-INFO
9
+ aik.egg-info/SOURCES.txt
10
+ aik.egg-info/dependency_links.txt
11
+ aik.egg-info/requires.txt
12
+ aik.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ customtkinter
@@ -0,0 +1,2 @@
1
+ aik
2
+ dist
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "aik"
7
+ version = "0.1.0"
8
+ description = "AIK - Astro Imagine Kinter"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+
12
+ authors = [
13
+ {name = "Astrozoomzinho"}
14
+ ]
15
+
16
+ dependencies = [
17
+ "customtkinter"
18
+ ]
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["."]
22
+
23
+ [tool.setuptools.package-data]
24
+ aik = ["aik_hq.ico"]
aik-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+