This commit is contained in:
Waylon Walker 2022-04-02 12:15:31 -05:00
commit d9fdf043f7
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
6 changed files with 1107 additions and 0 deletions

10
setup.py Normal file
View file

@ -0,0 +1,10 @@
from setuptools import setup
setup(
name="pygame-starter",
version="0.1.0",
py_modules=[
"pygame_starter",
],
install_requires=["pygame"],
)