10 lines
170 B
Python
10 lines
170 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="pygame-starter",
|
|
version="0.1.0",
|
|
py_modules=[
|
|
"pygame_starter",
|
|
],
|
|
install_requires=["pygame"],
|
|
)
|