From 07ba17b5767ce6df55ad0bb5daf0cee59d397182 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Fri, 18 Feb 2022 09:04:11 +0700 Subject: [PATCH] Add setup.py --- setup.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..af48dfb --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +import pathlib +from setuptools import setup + +# The directory containing this file +HERE = pathlib.Path(__file__).parent + +# The text of the README file +README = (HERE / "README.md").read_text() + +setup( + name='worthless', + version='1.0.0', + packages=['worthless'], + url='https://git.froggi.es/tretrauit/worthless-launcher', + license='MIT License', + author='tretrauit', + author_email='tretrauit@gmail.com', + description='A worthless CLI launcher written in Python.', + long_description=README, + long_description_content_type="text/markdown", + classifiers=[ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3" + ], + include_package_data=True, + install_requires=["aiohttp", "appdirs", "aiopath", "aiofiles"] +)