worthless-launcher/setup.py

29 lines
863 B
Python
Raw Permalink 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',
2024-04-25 15:46:10 +01:00
version='2.2.22',
2022-02-18 04:20:48 +00:00
packages=['worthless', 'worthless.classes', 'worthless.classes.launcher', 'worthless.classes.installer'],
2024-04-25 15:46:10 +01:00
url='https://git.tretrauit.me/tretrauit/worthless-launcher',
2022-02-18 02:04:11 +00:00
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
)