Problem
llm-d-latency-predictor is not published on PyPI. This creates a name-squatting risk — anyone can register this name on PyPI and upload a package under it.
If you don't upload to PyPI, then anybody can grab the name. If they upload anything remotely useful, then you may never be able to get it back. A PEP 541 request to reclaim a name can take months to over a year.
Recommendation
Publish an official sdist and wheel to PyPI for each release. This:
- Reserves the package name before someone else claims it
- Makes
pip install llm-d-latency-predictor work
- Follows Python packaging best practices
TODOs
Problem
llm-d-latency-predictoris not published on PyPI. This creates a name-squatting risk — anyone can register this name on PyPI and upload a package under it.If you don't upload to PyPI, then anybody can grab the name. If they upload anything remotely useful, then you may never be able to get it back. A PEP 541 request to reclaim a name can take months to over a year.
Recommendation
Publish an official sdist and wheel to PyPI for each release. This:
pip install llm-d-latency-predictorworkTODOs
pypa/gh-action-pypi-publish)python -m build && twine upload dist/*)