from setuptools import setup setup( name="TorrentUploaderBot", version="", url="", author="ORUDO", author_email="root@orudo.ru", description="A simple Telegram bot that will allow you to upload torrent files / magnet links to a remote Torrent server (qBitTorrent, Transmission, etc.)", install_requires=[ "aiohttp>=3.9.5", "aiofiles>=23.2.1", "redis>=5.0.8", "aiogram>=3.10.0", ], packages=["tubot", "tubot.static", "tubot.torrent", "tubot.dirgetter", "db"], )