-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
76 lines (72 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "tase"
version = "0.1.0"
description = "Telegram Audio Search Engine (lightning fast)"
homepage = "https://github.com/appheap/TASE"
repository = "https://github.com/appheap/TASE"
authors = [
"Soran Ghaderi <[email protected]>",
"Taleb Zarhesh <[email protected]>",
]
maintainers = [
"Soran Ghaderi <[email protected]>",
"Taleb Zarhesh <[email protected]>",
]
readme = "README.md"
license = "MIT"
include = [
"LICENSE",
]
#packages = [
# { include = "" }
#]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"python",
]
[tool.poetry.dependencies]
python = "^3.10"
emoji = "^2.1.0"
schedule = "^1.1.0"
elasticsearch = {extras = ["async"], version = "^8.6.2"}
Pyrogram = "^2.0.102"
TgCrypto = "^1.2.5"
tomli = "^2.0.1"
termcolor = "^2.2.0"
colorlog = "^6.7.0"
python-decouple = "^3.8"
python-arango = "^7.5.7"
kombu = "^5.2.4"
arrow = "^1.2.3"
#pydantic = "^1.10.2"
pydantic = "<1.10.0"
Jinja2 = "^3.1.2"
APScheduler = "^3.10.1"
Cython = "^0.29.33"
nltk = "^3.8.1"
spacy = "^3.5.1"
numpy = "^1.24.2"
psutil = "^5.9.4"
loguru = "^0.6.0"
uvloop = "^0.17.0"
aio-pika = "^9.0.5"
pyzmq = "^25.0.1"
beautifulsoup4 = "^4.11.2"
pandas = "^1.5.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"