commit 84471f1001e7c8ee89c7eb0a1babc381b82bc931 Author: trueold89 Date: Sat Aug 3 10:26:33 2024 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8322d5c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +venv +probe.* +__pycache__ +*.egg-info +dist diff --git a/README.md b/README.md new file mode 100644 index 0000000..52378d3 --- /dev/null +++ b/README.md @@ -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). + +*** diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1bd67ec --- /dev/null +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dcaca7c --- /dev/null +++ b/setup.py @@ -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"], +) diff --git a/tubot/__init__.py b/tubot/__init__.py new file mode 100644 index 0000000..e69de29