{% extends "root.html" %}{% load staticfiles %}{% load url from future %}{% load i18n %} {% block body %}

{% 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

{% trans '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
{% endblock %}