From df131bb6f3b9a8665849bb9e5b01b539e64152c5 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Tue, 10 Dec 2019 22:49:59 -0500 Subject: [PATCH] Initial Commit --- setup.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e2f063f --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +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"], + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +) \ No newline at end of file