2022-02-18 02:04:11 +00:00
|
|
|
import pathlib
|
2022-11-03 10:44:54 +00:00
|
|
|
|
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-01-18 04:28:33 +00:00
|
|
|
version='2.2.9',
|
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',
|
2022-08-23 10:02:20 +00:00
|
|
|
author_email='tretrauit@cachyos.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,
|
2022-06-25 18:53:37 +00:00
|
|
|
install_requires=["aiohttp", "appdirs", "aiopath"]
|
2022-02-18 02:04:11 +00:00
|
|
|
)
|