Fix: Migración a pyproject.toml y poetry

- Reemplaza setup.py/setup.cfg por pyproject.toml (PEP 621) + poetry.lock
- Dev dependencies en [tool.poetry.group.dev.dependencies]
- Elimina requirements_dev.txt (deps dev en pyproject.toml)
- Actualiza tox.ini, Makefile, Makefile.dev, Dockerfile y docs
This commit is contained in:
2026-08-12 19:56:23 -05:00
parent 93a3d18e32
commit 26ce89ca33
11 changed files with 1599 additions and 155 deletions

View File

@@ -44,3 +44,8 @@ RUN pip3.12 install setuptools setuptools-rust --break-system-packages
RUN pip3.13 install setuptools setuptools-rust --break-system-packages
RUN pip3 install tox pytest --break-system-packages
WORKDIR /app
COPY pyproject.toml README.rst ./
COPY facho ./facho
RUN pip3.13 install -e . --break-system-packages