add setup.py

This commit is contained in:
LucasKalil-Programador 2024-07-22 17:26:12 -03:00
parent eda1f9f891
commit 46ee808c5e

25
setup.py Normal file
View file

@ -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',
],
)