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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyNexusAPI
3
- Version: 1.0.2b0
3
+ Version: 1.0.3b0
4
4
  Summary: A massive bundle bridge for lazy developers to control OS, GUI, Keyboard and Mouse
5
5
  Author: Noob3ButUkr
6
6
  Classifier: Programming Language :: Python :: 3
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyNexusAPI
3
- Version: 1.0.2b0
3
+ Version: 1.0.3b0
4
4
  Summary: A massive bundle bridge for lazy developers to control OS, GUI, Keyboard and Mouse
5
5
  Author: Noob3ButUkr
6
6
  Classifier: Programming Language :: Python :: 3
@@ -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
- class DROPFILES(ctypes.Structure):
25
- _fields_ = [
26
- ("pFiles", wintypes.DWORD),
27
- ("pt", wintypes.POINT),
28
- ("fNC", wintypes.BOOL),
29
- ("fWide", wintypes.BOOL),
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.2b0",
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