Hacker News new | past | comments | ask | show | jobs | submit login

> * If you mean a thing that's meant to be deployed with a bunch of Python dependencies, then `requirements.txt` is probably still your best bet.

This is exactly how we got in this mess. Using ``setup.cfg`` or ``pyproject.toml`` for all projects makes this easy as now your deployable project can be installed via pip like every other one.

1. ``python -m virtualenv .``

2. ``source ./bin/activate.fish``

3. ``pip install -U https://my.program.com/path/to/tarball.tar.xz``




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: