Added setup. /JL
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal 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',
|
||||||
|
)
|
Reference in New Issue
Block a user