Add files via upload
This commit is contained in:
parent
deb4fcc069
commit
a7808f6aac
28 changed files with 1571 additions and 3 deletions
19
src/pygwin.egg-info/PKG-INFO
Normal file
19
src/pygwin.egg-info/PKG-INFO
Normal file
|
@ -0,0 +1,19 @@
|
|||
Metadata-Version: 2.1
|
||||
Name: pygwin
|
||||
Version: 0.0.1
|
||||
Summary: A library for creating Python applications.
|
||||
Home-page: https://github.com/themixray/pygwin
|
||||
Author: themixray
|
||||
Author-email: simindeymo@gmail.com
|
||||
License: MIT
|
||||
Project-URL: Bug Tracker, https://github.com/themixray/pygwin/issues
|
||||
Project-URL: Wiki, https://github.com/themixray/pygwin/wiki
|
||||
Description: # PyGWin
|
||||
A library for creating Python applications.
|
||||
|
||||
[Documentation](https://github.com/themixray/pygwin/wiki)
|
||||
Platform: UNKNOWN
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Description-Content-Type: text/markdown
|
23
src/pygwin.egg-info/SOURCES.txt
Normal file
23
src/pygwin.egg-info/SOURCES.txt
Normal file
|
@ -0,0 +1,23 @@
|
|||
README.md
|
||||
pyproject.toml
|
||||
setup.cfg
|
||||
setup.py
|
||||
src/pygwin/__init__.py
|
||||
src/pygwin/_pg.py
|
||||
src/pygwin/_win.py
|
||||
src/pygwin/console.py
|
||||
src/pygwin/font.py
|
||||
src/pygwin/gamepad.py
|
||||
src/pygwin/image.py
|
||||
src/pygwin/keyboard.py
|
||||
src/pygwin/mixer.py
|
||||
src/pygwin/mouse.py
|
||||
src/pygwin/rect.py
|
||||
src/pygwin/surface.py
|
||||
src/pygwin/tray.py
|
||||
src/pygwin/ui.py
|
||||
src/pygwin.egg-info/PKG-INFO
|
||||
src/pygwin.egg-info/SOURCES.txt
|
||||
src/pygwin.egg-info/dependency_links.txt
|
||||
src/pygwin.egg-info/requires.txt
|
||||
src/pygwin.egg-info/top_level.txt
|
1
src/pygwin.egg-info/dependency_links.txt
Normal file
1
src/pygwin.egg-info/dependency_links.txt
Normal file
|
@ -0,0 +1 @@
|
|||
|
6
src/pygwin.egg-info/requires.txt
Normal file
6
src/pygwin.egg-info/requires.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
cython
|
||||
pywin32
|
||||
pygame
|
||||
inputs
|
||||
pydub
|
||||
wxPython
|
1
src/pygwin.egg-info/top_level.txt
Normal file
1
src/pygwin.egg-info/top_level.txt
Normal file
|
@ -0,0 +1 @@
|
|||
pygwin
|
|
@ -26,6 +26,9 @@ class rect:
|
|||
return locals()
|
||||
height = property(**height())
|
||||
def collide(self, x):
|
||||
return self._rect.colliderect(x._rect_rect)
|
||||
try:
|
||||
return self._rect.colliderect(x._rect_rect)
|
||||
except:
|
||||
return self._rect.colliderect(x._rect)
|
||||
def contains(self, x, y):
|
||||
return self._rect.collidepoint(x,y)
|
||||
|
|
|
@ -7,6 +7,7 @@ Author: themixray
|
|||
Author-email: simindeymo@gmail.com
|
||||
License: UNKNOWN
|
||||
Project-URL: Bug Tracker, https://github.com/themixray/pygwin/issues
|
||||
Project-URL: Wiki, https://github.com/themixray/pygwin/wiki
|
||||
Platform: UNKNOWN
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue