forked from OrudoCA/qBitDownload-Bot
Initial commit
This commit is contained in:
commit
84471f1001
|
@ -0,0 +1,5 @@
|
|||
venv
|
||||
probe.*
|
||||
__pycache__
|
||||
*.egg-info
|
||||
dist
|
|
@ -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).
|
||||
|
||||
***
|
|
@ -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
|
|
@ -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"],
|
||||
)
|
Loading…
Reference in New Issue