-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.29 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.poetry]
name = "ravager"
version = "1.0.1"
description = "A telegram bot that downloads content in the form of torrent and direct download links and mirrors them 1:1 to google drive"
authors = ["Aseem Manna <coolfool149@gmail.com>"]
exclude = ["ravager/.*","ravager/*snippets.py","ravager/services/mega"]
[tool.poetry.dependencies]
python = "^3.10"
python-telegram-bot = "^13.10"
python-dotenv = "^0.19.2"
requests = "^2.27.0"
heroku3 = "^5.1.4"
pytz = "^2021.3"
pexpect = "^4.8.0"
psutil = "^5.9.0"
SQLAlchemy = "^1.4.29"
aria2p = "^0.11.1"
celery = {extras = ["redis"], version = "^5.2.3"}
setuptools = "59.6.0"
Flask = "^2.0.2"
google-api-python-client = "^2.36.0"
google-auth-httplib2 = "^0.1.0"
google-auth-oauthlib = "^0.4.6"
python-dateutil = "^2.8.2"
torrentool = "^1.1.1"
dataclasses-json = "^0.5.6"
gunicorn = "^20.1.0"
psycopg2-binary = [
{ version = "^2.9.3", markers = "platform_machine == 'x86_64'" },
{ version = "^2.9.3", markers = "platform_machine == 'i386'" },
{ version = "^2.9.3", markers = "platform_machine == 'i686'" },
{ version = "^2.9.3", markers = "platform_machine == 'aarch64'" },
{ version = "^2.9.3", markers = "platform_machine == 'ppc64le'" }
]
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"