aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <askh@opera.com>2009-05-04 10:38:38 +0200
committerAsk Solem <askh@opera.com>2009-05-04 10:38:38 +0200
commit76d401adcdfc846124daaa1e186e982cb6be415d (patch)
treeb25011b82639c07d819b002bfc1a1a9b422b7fbd
parent647731a40471cfbaf4805a345f1db9ac88cf6343 (diff)
parent39909f5d9e09622df9fd9e855831c9544b1de700 (diff)
downloadchishop-76d401adcdfc846124daaa1e186e982cb6be415d.tar.bz2
chishop-76d401adcdfc846124daaa1e186e982cb6be415d.tar.xz
chishop-76d401adcdfc846124daaa1e186e982cb6be415d.zip
Merge branch 'russell/master'
-rw-r--r--README19
1 files changed, 13 insertions, 6 deletions
diff --git a/README b/README
index 08e0189..bf6511b 100644
--- a/README
+++ b/README
@@ -52,20 +52,27 @@ Add the following to your ``~/.pypirc`` file::
52 52
53 username:user 53 username:user
54 password:secret 54 password:secret
55
56 repository:http://localhost:8000 55 repository:http://localhost:8000
57 56
58Pushing a package to local PyPI 57Uploading a package: Python >=2.6
59----------------------------------- 58--------------------------------------------
60
61instead of using register and dist command, you can use "mregister" and "mupload", that are a backport of python 2.6 register and upload commands, that supports multiple servers.
62 59
63To push the package to the local pypi:: 60To push the package to the local pypi::
64 61
65 $ python setup.py mregister sdist mupload -r local 62 $ python setup.py register sdist upload -r local
63
64
65Uploading a package: Python <2.6
66-------------------------------------------
66 67
67If you don't have Python 2.6 please run the command below to install the backport of the extension:: 68If you don't have Python 2.6 please run the command below to install the backport of the extension::
68 69
69 $ easy_install -U collective.dist 70 $ easy_install -U collective.dist
70 71
72instead of using register and dist command, you can use "mregister" and "mupload", that are a backport of python 2.6 register and upload commands, that supports multiple servers.
73
74To push the package to the local pypi::
75
76 $ python setup.py mregister sdist mupload -r local
77
71.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround 78.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround