[MISC] Update compose override to include watch configuration, updated deps to include debugpy for all services
27 lines
618 B
TOML
27 lines
618 B
TOML
[project]
|
|
name = "unstract-x2text-service"
|
|
version = "0.1.0"
|
|
description = "X2TEXT Service"
|
|
authors = [{ name = "Zipstack inc", email = "devsupport@zipstack.com" }]
|
|
requires-python = ">=3.12,<3.13"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
|
|
dependencies = [
|
|
"Flask>=3.0.1",
|
|
"flask-sqlalchemy>=3.1.1",
|
|
"python-dotenv~=1.0.0",
|
|
"requests>=2.31.0",
|
|
"peewee>=3.17.0",
|
|
"psycopg2-binary~=2.9",
|
|
]
|
|
|
|
[dependency-groups]
|
|
deploy = [
|
|
"gunicorn[gevent]~=23.0",
|
|
# OpenTelemetry for tracing and profiling
|
|
"opentelemetry-distro",
|
|
"opentelemetry-exporter-otlp",
|
|
]
|
|
dev = ["debugpy>=1.8.14"]
|