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", )