fix lint-agents install

This commit is contained in:
leo
2026-03-25 14:23:04 +01:00
parent d05a4da470
commit f08ae06c5c
2 changed files with 14 additions and 0 deletions
+11
View File
@@ -15,6 +15,17 @@ COPY pyproject.toml .
RUN mkdir /install && \
pip install --prefix=/install .
FROM base AS development
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir ".[dev]"
COPY . .
CMD ["python", "metadata_collector.py", "dev"]
FROM base AS production
WORKDIR /app
+3
View File
@@ -18,6 +18,9 @@ dev = [
"ruff==0.15.6",
]
[tool.setuptools]
py-modules = ["multi_user_transcriber", "metadata_collector", "exceptions"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"