From 2ececd570a56ca8a9172723f5335ee6ab2ea1f13 Mon Sep 17 00:00:00 2001 From: jhermann Date: Wed, 20 Aug 2014 17:48:55 +0200 Subject: [PATCH 1/3] Added "Package Repositories" section, and making a start with "devpi" --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2f0c5b0a..a342149f 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by - [Awesome Python](#awesome-python) - [Environment Management](#environment-management) - [Package Management](#package-management) + - [Package Repositories](#package-repositories) - [Distribution](#distribution) - [Build Tools](#build-tools) - [Interactive Interpreter](#interactive-interpreter) @@ -107,6 +108,12 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [Curdling](http://clarete.li/curdling/) - Curdling is a command line tool for managing Python packages. * [wheel](http://pythonwheels.com/) - The new standard of Python distribution and are intended to replace eggs. +## Package Repositories + +*Local PyPI repositories and proxies.* + +* [devpi](http://doc.devpi.net/latest/) - PyPI server and packaging/testing/release tool + ## Distribution *Libraries to create packaged executables for release distribution.* From d405145760f3c54aac5fca406b5fc92833dd5a3b Mon Sep 17 00:00:00 2001 From: jhermann Date: Thu, 21 Aug 2014 11:49:57 +0200 Subject: [PATCH 2/3] some more PyPI-related entries --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a342149f..ad3e6987 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,10 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by *Local PyPI repositories and proxies.* -* [devpi](http://doc.devpi.net/latest/) - PyPI server and packaging/testing/release tool +* [Python Wiki PyPiImplementations](https://wiki.python.org/moin/PyPiImplementations) - A (somewhat dated) wiki list of PyPI compatible implementations. +* [devpi](http://doc.devpi.net/latest/) - PyPI server and packaging/testing/release tool. +* [localshop](https://github.com/mvantellingen/localshop) - PyPI server which mirrors official packages on-demand, and also supports local (private) package uploads. +* [Defend Against Fruit](http://teamfruit.github.io/defend_against_fruit/) - Pragmatic, continuous deployment-style build system for Python, with very detailed conceptual documentation. ## Distribution From e4c28b6abc79a9c9bd015e21723b0e848cf271aa Mon Sep 17 00:00:00 2001 From: jhermann Date: Thu, 21 Aug 2014 12:02:58 +0200 Subject: [PATCH 3/3] added warehouse --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ad3e6987..c9b8d3f5 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by *Local PyPI repositories and proxies.* * [Python Wiki PyPiImplementations](https://wiki.python.org/moin/PyPiImplementations) - A (somewhat dated) wiki list of PyPI compatible implementations. +* [warehouse](https://github.com/pypa/warehouse#warehouse) - Next generation Python Package Repository, designated replacemnet for the current official PyPI service. * [devpi](http://doc.devpi.net/latest/) - PyPI server and packaging/testing/release tool. * [localshop](https://github.com/mvantellingen/localshop) - PyPI server which mirrors official packages on-demand, and also supports local (private) package uploads. * [Defend Against Fruit](http://teamfruit.github.io/defend_against_fruit/) - Pragmatic, continuous deployment-style build system for Python, with very detailed conceptual documentation.