55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[tool.poetry]
|
|
name = "honcho"
|
|
version = "0.0.9"
|
|
description = "Honcho Server"
|
|
authors = ["Plastic Labs <hello@plasticlabs.ai>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
fastapi = "^0.111.0"
|
|
uvicorn = "^0.29.0"
|
|
python-dotenv = "^1.0.0"
|
|
sqlalchemy = "^2.0.30"
|
|
slowapi = "^0.1.9"
|
|
fastapi-pagination = "^0.12.24"
|
|
pgvector = "^0.2.5"
|
|
openai = "^1.12.0"
|
|
sentry-sdk = "^2.3.0"
|
|
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"
|
|
psycopg = {extras= ["binary"], version="^3.1.19"}
|
|
httpx = "^0.27.0"
|
|
uvloop = "^0.19.0"
|
|
httptools = "^0.6.1"
|
|
mirascope = "^0.14.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"
|