From 84471f1001e7c8ee89c7eb0a1babc381b82bc931 Mon Sep 17 00:00:00 2001 From: trueold89 Date: Sat, 3 Aug 2024 10:26:33 +0300 Subject: [PATCH] Initial commit --- .gitignore | 5 +++++ README.md | 5 +++++ requirements.txt | 8 ++++++++ setup.py | 12 ++++++++++++ tubot/__init__.py | 0 5 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt create mode 100644 setup.py create mode 100644 tubot/__init__.py 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