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 +33 -0
- aik-0.1.0/README.md +24 -0
- aik-0.1.0/aik/__init__.py +5 -0
- aik-0.1.0/aik/aik_hq.ico +0 -0
- aik-0.1.0/aik/button.py +10 -0
- aik-0.1.0/aik/label.py +9 -0
- aik-0.1.0/aik/window.py +30 -0
- aik-0.1.0/aik.egg-info/PKG-INFO +33 -0
- aik-0.1.0/aik.egg-info/SOURCES.txt +12 -0
- aik-0.1.0/aik.egg-info/dependency_links.txt +1 -0
- aik-0.1.0/aik.egg-info/requires.txt +1 -0
- aik-0.1.0/aik.egg-info/top_level.txt +2 -0
- aik-0.1.0/pyproject.toml +24 -0
- aik-0.1.0/setup.cfg +4 -0
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
aik-0.1.0/aik/aik_hq.ico
ADDED
|
Binary file
|
aik-0.1.0/aik/button.py
ADDED
aik-0.1.0/aik/label.py
ADDED
aik-0.1.0/aik/window.py
ADDED
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
customtkinter
|
aik-0.1.0/pyproject.toml
ADDED
|
@@ -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