-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 901 Bytes
/
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
[tool.poetry]
name = "youtube-search"
version = "0.1.4"
description = ""
authors = ["Andrew Klyuchnikov <off-rey@bk.ru>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.104.1"
uvicorn = {extras = ["standart"], version = "^0.22.0"}
asyncpg = "0.29.0"
alembic = "^1.10.4"
SQLAlchemy = {extras = ["asyncio"], version = "^2.0.11"}
pytest = "^7.3.1"
pytest-asyncio = "^0.23.2"
psycopg2-binary = "^2.9.6"
celery = {extras = ["redis"], version = "^5.2.7"}
google-api-python-client = "^2.86.0"
beautifulsoup4 = "^4.12.2"
youtube-transcript-api = "^0.6.0"
sqlalchemy-stubs = "^0.4"
httpx = "^0.25.2"
asynctest = "^0.13.0"
elasticsearch = {extras = ["async"], version = "^8.7.0"}
retry = "^0.9.2"
python-dateutil = "^2.8.2"
pydantic-settings = "^2.1.0"
[tool.poetry.dev-dependencies]
pre-commit = "^3.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"