File size: 610 Bytes
51815a8 c89d9d1 51815a8 8a75b5b c89d9d1 8a75b5b 51815a8 c89d9d1 8a75b5b 51815a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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",
)
|