pyzero-joystick 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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyzero-joystick
3
+ Version: 0.1.0
4
+ Summary: Joystick simple estilo Pygame Zero
5
+ Author: TuNombre
6
+ Requires-Dist: pygame
7
+ Dynamic: author
8
+ Dynamic: requires-dist
9
+ Dynamic: summary
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyzero-joystick
3
+ Version: 0.1.0
4
+ Summary: Joystick simple estilo Pygame Zero
5
+ Author: TuNombre
6
+ Requires-Dist: pygame
7
+ Dynamic: author
8
+ Dynamic: requires-dist
9
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ pyproject.toml
2
+ setup.py
3
+ pyzero_joystick.egg-info/PKG-INFO
4
+ pyzero_joystick.egg-info/SOURCES.txt
5
+ pyzero_joystick.egg-info/dependency_links.txt
6
+ pyzero_joystick.egg-info/requires.txt
7
+ pyzero_joystick.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="pyzero-joystick",
5
+ version="0.1.0",
6
+ packages=find_packages(),
7
+ install_requires=["pygame"],
8
+ author="TuNombre",
9
+ description="Joystick simple estilo Pygame Zero",
10
+ )