summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKai Hoppert <kai.hoppert@online.de>2013-09-01 14:41:44 +0200
committerKai Hoppert <kai.hoppert@online.de>2013-09-01 14:41:44 +0200
commit05166466c452f9c2249cbb4f1eeb57b870a0df6f (patch)
tree95d5a0ffb8f5eec9f4fdfdf3a502e61d4554b784 /docs
parent3d1664ac6c9d4436213e3f28eeb790cc96b9d30e (diff)
downloadpython-setuptools-bitbucket-05166466c452f9c2249cbb4f1eeb57b870a0df6f.tar.gz
Add documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/easy_install.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/easy_install.txt b/docs/easy_install.txt
index 03f816de..ffe6a268 100644
--- a/docs/easy_install.txt
+++ b/docs/easy_install.txt
@@ -454,6 +454,30 @@ You can do this with both index page URLs and direct download URLs. As long
as any HTML pages read by easy_install use *relative* links to point to the
downloads, the same user ID and password will be used to do the downloading.
+Authentication against privat repository
+----------------------------------------
+
+To get these things running. You need a .pypirc file in your home directory. The file should has the following format.
+
+Example
+
+::
+
+ [distutils]
+ index-servers = myrepos
+
+ [myrepos]
+ repository: http://myrepos.com
+ username:MY_USER
+ password:MY_PASSORD
+
+In your buildout.cfg you have to add the eggserver url under find-links. The example is for an mypypi egg server. /eggs provides a flat package list.
+
+Example
+
+::
+
+ find-links = http://myrepos.com/eggs
Controlling Build Options
~~~~~~~~~~~~~~~~~~~~~~~~~