Added setup. /JL

This commit is contained in:
2025-04-19 20:25:22 +02:00
parent f627ab4299
commit dbdba2e377

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
if __name__ == "__main__":
from setuptools import setup, find_packages
setup(
name='pygameController',
version='0.0.3',
packages=find_packages(),
install_requires=[],
author='Jan Lerking',
author_email='',
description='A simple controller class for pygame.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.12',
)