{% extends "base.html" %}{% load staticfiles %}{% load url from future %}{% load i18n %} {% block body %}
{{ form.media }} {% csrf_token %}
{% if has_results %}

{% trans "Search results" %}

{% else %}

{% trans "Client configuration" %}

pip

{% trans "Edit ~/.pip/pip.conf to include these lines" %}
[global]
index = {{ base_url }}pypi
index-url = {{ base_url }}simple

buildout

{% trans "Edit ~/.buildout/default.cfg to include these lines" %}
[buildout]
index = {{ base_url }}simple

Setuptools

{% trans "Edit ~/.pypirc to include these lines" %}
[distutils]
index-servers =
    pythonnest

[pythonnest]
username: your-login
password: your-password
repository: {{ base_url }}setup
Run the following commands to use this repository:
python setup.py bdist sdist upload -r http://localhost:8000/setup

Easyinstall

{% trans "Edit ~/.pydistutils.cfg to include these lines" %}
[easy_install]
index_url = {{ base_url }}simple
{% endif %} {% endblock %}