pygame-starter/setup.py
2022-04-02 12:15:31 -05:00

10 lines
170 B
Python

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