Add setup.py

This commit is contained in:
tretrauit 2022-02-18 09:04:11 +07:00
parent 32b6ba965f
commit 07ba17b576
Signed by: tretrauit
GPG Key ID: 862760FF1903319E
1 changed files with 27 additions and 0 deletions

27
setup.py Normal file
View File

@ -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"]
)