Speedster-Lib / setup.py
Bl4ckSpaces's picture
Release v16.0.3: Batch, Smart Skip, Auto-Extract
c89d9d1 verified
from setuptools import setup, find_packages
setup(
name="speedster",
version="16.0.3", # Juggernaut Update
packages=find_packages(),
install_requires=[
"aiohttp>=3.9.0",
"tqdm>=4.66.0",
"nest_asyncio",
"requests"
],
entry_points={
'console_scripts': [
'speedster=speedster:cli_main',
],
},
author="Bl4ckSpaces",
description="Universal downloader with Batch processing, Smart Skip, and Auto-Extract.",
keywords="downloader, aiohttp, async, civitai, huggingface, speedster, cli",
python_requires=">=3.8",
)