This is a buildpack for Python apps, powered by pip.
This is our default buildpack for Python applications. In case you want to introduce some changes, fork our buildpack, apply changes and test it via custom buildpack feature:
$ cctrlapp APP_NAME create custom --buildpack https://github.com/cloudControl/buildpack-python.gitThe buildpack will use Pip to install your dependencies, vendoring a copy of the Python runtime into your web container.
You can also specify arbitrary Python release with a runtime.txt file in the application repository root, otherwise python-2.7.3 will be choosen as a default one:
$ cat runtime.txt
python-3.3.2List of supported versions:
- python-2.7.2
- python-2.7.3
- python-2.7.4
- python-2.7.5
- python-3.1.1
- python-3.1.2
- python-3.1.3
- python-3.1.4
- python-3.1.5
- python-3.2.0
- python-3.2.1
- python-3.2.2
- python-3.2.3
- python-3.2.4
- python-3.2.5
- python-3.3.0
- python-3.3.1
- python-3.3.2