{% extends "base.html" %}{% load staticfiles %}{% load url from future %}{% load i18n %} {% block body %}
{% if has_results %}[global]
index = {{ base_url }}pypi
index-url = {{ base_url }}simple
[buildout]
index = {{ base_url }}simple
[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
[easy_install]
index_url = {{ base_url }}simple
{% endif %}
{% endblock %}