From 46ee808c5eaf477aafd7b67b326d99a0cb8897a2 Mon Sep 17 00:00:00 2001 From: LucasKalil-Programador Date: Mon, 22 Jul 2024 17:26:12 -0300 Subject: [PATCH] add setup.py --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..04fd982 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup, find_packages + +setup( + name='sand-box-python', + version='1.0', + packages=find_packages(), + url='https://github.com/LucasKalil-Programador/sand-box-python', + license='MIT License', + author='Lucas G. Kalil', + author_email='lucas.prokalil2020@outlook.com', + description='Simple sandbox game where each pixel on the screen represents an element', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', + install_requires=[ + 'pygame', + 'numba', + 'numpy', + ], +)