mirror of
https://github.com/LucasKalil-Programador/sand-box-python.git
synced 2026-07-04 16:32:58 -03:00
add setup.py
This commit is contained in:
parent
eda1f9f891
commit
46ee808c5e
1 changed files with 25 additions and 0 deletions
25
setup.py
Normal file
25
setup.py
Normal 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',
|
||||||
|
],
|
||||||
|
)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue