2023-10-23 14:47:11 +00:00
|
|
|
[tool.poetry]
|
2024-02-19 13:18:35 +00:00
|
|
|
name = "core"
|
2024-04-08 07:38:58 +00:00
|
|
|
version = "0.3.3"
|
2023-10-23 14:47:11 +00:00
|
|
|
description = "core module for discours.io"
|
|
|
|
authors = ["discoursio devteam"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.12"
|
2024-04-08 07:38:58 +00:00
|
|
|
SQLAlchemy = "^2.0.29"
|
2023-11-22 18:06:45 +00:00
|
|
|
psycopg2-binary = "^2.9.9"
|
2023-10-23 14:47:11 +00:00
|
|
|
redis = {extras = ["hiredis"], version = "^5.0.1"}
|
2024-04-08 07:38:58 +00:00
|
|
|
sentry-sdk = {version = "^1.44.1", extras = ["starlette", "ariadne", "sqlalchemy"]}
|
|
|
|
starlette = "^0.37.2"
|
|
|
|
gql = "^3.5.0"
|
|
|
|
ariadne = "^0.23.0"
|
|
|
|
pre-commit = "^3.7.0"
|
|
|
|
granian = "^1.2.1"
|
|
|
|
google-analytics-data = "^0.18.7"
|
|
|
|
opensearch-py = "^2.5.0"
|
|
|
|
httpx = "^0.27.0"
|
2024-02-19 09:49:33 +00:00
|
|
|
dogpile-cache = "^1.3.1"
|
2024-02-20 15:04:59 +00:00
|
|
|
colorlog = "^6.8.2"
|
2024-02-25 13:43:04 +00:00
|
|
|
sqlalchemy-searchable = "^2.1.0"
|
2023-10-23 14:47:11 +00:00
|
|
|
|
2023-11-28 07:53:48 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-04-08 07:38:58 +00:00
|
|
|
ruff = "^0.3.5"
|
2024-02-19 11:45:55 +00:00
|
|
|
isort = "^5.13.2"
|
2023-11-28 07:53:48 +00:00
|
|
|
|
2023-10-23 14:47:11 +00:00
|
|
|
[build-system]
|
2024-02-19 13:23:24 +00:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
2023-10-23 14:47:11 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-04-17 15:31:11 +00:00
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
venvPath = "."
|
|
|
|
venv = ".venv"
|