55 lines
1.3 KiB
TOML
55 lines
1.3 KiB
TOML
[tool.poetry]
|
|
name = "honcho"
|
|
version = "0.0.7"
|
|
description = "Honcho Server"
|
|
authors = ["Plastic Labs <hello@plasticlabs.ai>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8.1"
|
|
fastapi = "^0.109.0"
|
|
uvicorn = "^0.24.0.post1"
|
|
python-dotenv = "^1.0.0"
|
|
sqlalchemy = "^2.0.25"
|
|
slowapi = "^0.1.8"
|
|
fastapi-pagination = "^0.12.14"
|
|
pgvector = "^0.2.5"
|
|
openai = "^1.12.0"
|
|
sentry-sdk = {extras = ["fastapi", "sqlalchemy"], version = "^1.40.5"}
|
|
opentelemetry-instrumentation-fastapi = "^0.44b0"
|
|
opentelemetry-api = "^1.23.0"
|
|
opentelemetry-sdk = "^1.23.0"
|
|
opentelemetry-exporter-otlp = "^1.23.0"
|
|
opentelemetry-instrumentation-sqlalchemy = "^0.44b0"
|
|
opentelemetry-instrumentation-logging = "^0.44b0"
|
|
greenlet = "^3.0.3"
|
|
realtime = "^1.0.2"
|
|
psycopg = {extras = ["binary"], version = "^3.1.18"}
|
|
langchain = "^0.1.12"
|
|
langchain-openai = "^0.0.8"
|
|
httpx = "^0.27.0"
|
|
|
|
[tool.ruff.lint]
|
|
# from https://docs.astral.sh/ruff/linter/#rule-selection example
|
|
select = [
|
|
# pycodestyle
|
|
"E",
|
|
# Pyflakes
|
|
"F",
|
|
# pyupgrade
|
|
"UP",
|
|
# flake8-bugbear
|
|
"B",
|
|
# flake8-simplify
|
|
"SIM",
|
|
# isort
|
|
"I",
|
|
]
|
|
[tool.ruff.flake8-bugbear]
|
|
extend-immutable-calls = ["fastapi.Depends"]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|