2019-12-10 22:49:59 -05:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="RetroUFO", # Replace with your own username
|
|
|
|
version="0.9.5",
|
|
|
|
author="Melon Bread",
|
|
|
|
author_email="rain@melonbread.dev",
|
|
|
|
description="Easily upgrade all libreto cores from the build bot",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
license="MIT",
|
|
|
|
keywords=["libretro", "retroarch", "core"],
|
|
|
|
url="https://github.com/pypa/sampleproject",
|
|
|
|
packages=["RetroUFO"],
|
2019-12-11 00:33:48 -05:00
|
|
|
install_requires=[
|
|
|
|
'PySide2',
|
|
|
|
],
|
2019-12-10 22:49:59 -05:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2019-12-11 00:33:48 -05:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
"RetroUFO=RetroUFO.RetroUFO:main",
|
|
|
|
"RetroUFO-GUI=RetroUFO.RetroUFO_GUI:main"
|
|
|
|
]
|
|
|
|
},
|
2019-12-10 22:49:59 -05:00
|
|
|
)
|