worthless-launcher/setup.py

29 lines
860 B
Python
Raw Normal View History

2022-02-18 02:04:11 +00:00
import pathlib
2022-02-18 02:04:11 +00:00
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',
2023-11-08 09:22:48 +00:00
version='2.2.21',
2022-02-18 04:20:48 +00:00
packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'],
2022-02-18 02:04:11 +00:00
url='https://git.froggi.es/tretrauit/worthless-launcher',
license='MIT License',
author='tretrauit',
author_email='tretrauit@gmail.org',
2022-02-18 02:04:11 +00:00
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"]
2022-02-18 02:04:11 +00:00
)