Description:
Currently, installation instructions rely on global pip install -r requirements.txt. This approach can lead to environment inconsistencies across machines and CI/CD pipelines. I propose integrating uv natively into the project to improve reproducibility, speed, and isolation.
Proposed Changes:
- Add
uv to requirements.txt or migrate to a pyproject.toml for full uv support.
- Update installation instructions in
README.md:
uv pip install -r requirements.txt
uv run python app.py