PyNexusAPI 1.0.2b0__tar.gz → 1.0.3b0__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.
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PKG-INFO +1 -1
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PyNexusAPI.egg-info/PKG-INFO +1 -1
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/pynexusapi/__init__.py +11 -7
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/setup.py +1 -1
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PyNexusAPI.egg-info/SOURCES.txt +0 -0
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PyNexusAPI.egg-info/dependency_links.txt +0 -0
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PyNexusAPI.egg-info/requires.txt +0 -0
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/PyNexusAPI.egg-info/top_level.txt +0 -0
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/README.md +0 -0
- {pynexusapi-1.0.2b0 → pynexusapi-1.0.3b0}/setup.cfg +0 -0
|
@@ -13,6 +13,7 @@ if os.name == "nt":
|
|
|
13
13
|
import ctypes
|
|
14
14
|
from ctypes import wintypes
|
|
15
15
|
else:
|
|
16
|
+
pass
|
|
16
17
|
import warnings
|
|
17
18
|
import customtkinter as ctk
|
|
18
19
|
import builtins
|
|
@@ -21,13 +22,16 @@ import builtins
|
|
|
21
22
|
# print("Thanks for using PyNexusAPI by PyNoob CaSP Software (C) 2026! This message can be deleted by going into project's file and just uhm like deleting it..")
|
|
22
23
|
# deleted for good no being pygame
|
|
23
24
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
25
|
+
if system.platform == "win32":
|
|
26
|
+
class DROPFILES(ctypes.Structure):
|
|
27
|
+
_fields_ = [
|
|
28
|
+
("pFiles", wintypes.DWORD),
|
|
29
|
+
("pt", wintypes.POINT),
|
|
30
|
+
("fNC", wintypes.BOOL),
|
|
31
|
+
("fWide", wintypes.BOOL),
|
|
32
|
+
]
|
|
33
|
+
else:
|
|
34
|
+
pass
|
|
31
35
|
|
|
32
36
|
# WARNING: This is BETA version of PyNexusAPI, please download any updates and don't complain, again it's beta >w<
|
|
33
37
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="PyNexusAPI",
|
|
5
|
-
version="1.0.
|
|
5
|
+
version="1.0.3b0",
|
|
6
6
|
author="Noob3ButUkr", # or PyNoob3 CaSP Software (C) 2026, or even Python Noob3ButUkr Custom and Small Projects Copyright 2026
|
|
7
7
|
description="A massive bundle bridge for lazy developers to control OS, GUI, Keyboard and Mouse",
|
|
8
8
|
long_description=open("README.md", encoding="utf-8").read(),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|