Initial commit

This commit is contained in:
trueold89 2024-08-03 10:26:33 +03:00
commit 84471f1001
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
5 changed files with 30 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
venv
probe.*
__pycache__
*.egg-info
dist

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# Torrent Uploader Bot
## A simple Telegram bot that will allow you to upload torrent files / magnet links to a remote Torrent server (qBitTorrent, Transmission, etc).
***

8
requirements.txt Normal file
View File

@ -0,0 +1,8 @@
aiohappyeyeballs>=2.3.4
aiohttp>=3.10.0
aiosignal>=1.3.1
attrs>=23.2.0
frozenlist>=1.4.1
idna>=3.7
multidict>=6.0.5
yarl>=1.9.4

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
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.10.0"],
packages=["tubot"],
)

0
tubot/__init__.py Normal file
View File