TorrentUplouderBot/setup.py

18 lines
530 B
Python
Raw Permalink Normal View History

2024-08-03 07:26:33 +00:00
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"],
2024-08-03 07:26:33 +00:00
)