-
https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html History of setuptools
-
https://hynek.me/articles/python-app-deps-2018/ python deps management. Poetry? Pip-tools? Pipenv?
-
https://caremad.io/posts/2013/07/setup-vs-requirement/ setup.py vs requirements.txt
-
https://snarky.ca/what-the-heck-is-pyproject-toml/ What is pyproject, pep 517 and 518?
-
https://snarky.ca/classifying-python-virtual-environment-workflows/ classifying-python-virtual-environment-workflows
-
https://devblogs.microsoft.com/python/python-package-management-proposal/ enumeration of dependency managers and proposal of unification in vscode context
-
https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/ upload packages
-
https://hynek.me/articles/testing-packaging/ hynek Testing and the src layout
-
https://hynek.me/articles/semver-will-not-save-you/ semver is a lie
-
https://kolodziejj.info/articles/dependencies/ - Jacek, managing dependencies (El verde, nuevo que explica bien)
-
https://snarky.ca/what-to-do-when-you-botch-a-release-on-pypi/ Reproducibility with pinning is a lie
-
https://discuss.python.org/t/how-to-specify-dependencies-pep-508-strings-or-a-table-in-toml/5243/38 Como especificar deps en un proyecto python
-
https://snarky.ca/the-challenges-in-designing-a-library-for-pep-425/ wheel tags
- Novedades PyPa: https://pyfound.blogspot.com/2021/12/pypi-user-feedback-summary.html
- PyPi Interno https://www.youtube.com/watch?v=7aFOerl1b1o
- https://www.youtube.com/watch?v=iLVNWfPWAC8 Distributing Python projects in Python.
- https://packaging.python.org/en/latest/ PyPa Index Page
- pypa/pip#4187 Why pip + git ssh may be a bad choice
- https://medium.com/ochrona/understanding-python-package-distribution-types-25d53308a9a#:~:text=Advantages%20of%20Wheels%20over%20sdist,much%20smaller%20than%20sdist%20files. Wheel vs sdists. sdist coupled with setuptools and has dependencies on target environment to build the package
- All bret cannon packaging articles: https://snarky.ca/tag/packaging/
- https://gist.github.com/hynek/5e85706cee589a204251b33359585392 makefile para inicializar y actualizar deps
- https://gist.github.com/brettcannon/5d954881bf4b0a396180c38f3a3ff85e single binary to do everything
- 427: Wheel Spec
- 517: Standard para construir wheels y sdists desde un source (Desacoplar packaging de setuptools para builder)
- 518: Especificar pre-condiciones para buildear proyecto (Desacoplar de setuptools, de la mano de PEP 517)
- 503: Simple PyPi API for mirrors
- 508: Sintaxis de declaracion de dependencias
- 621: pyproject.toml como fuente de verdad
- 631: Guardar dependencias en pyproject.toml
- 660: Editable installs para pyprojec.toml projects
- 665 (Rejected): Estandar para lock files
- 632: Delete distutils from stdlib