aboutsummaryrefslogtreecommitdiff
path: root/README
blob: 080df8a5e8733f02bc842410dd74404d54b51a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
=========================================
ChiShop/DjangoPyPI
=========================================
:Version: 0.1

Installation
============

First you have to install the dependencies::

    $ python setup.py build
    # python setup.py install # (run as root)

Initial configuration
---------------------
::

    $ cd chipshop/

    $ $EDITOR settings.py

    $ python manage.py syncdb

Run the PyPI server
-------------------
::

    $ python manage.py runserver


Please note that ``chishop/media/dists`` has to be writable by the
user the web-server is running as.

Using Setuptools
================

Add the following to your ``~/.pypirc`` file::

    [distutils]
    index-servers =
        pypi
        local


    [pypi]
    username:user
    password:secret

    [local]

    username:user
    password:secret
    repository:http://localhost:8000

Uploading a package: Python >=2.6
--------------------------------------------

To push the package to the local pypi::

    $ python setup.py register sdist upload -r local


Uploading a package: Python <2.6
-------------------------------------------

If you don't have Python 2.6 please run the command below to install the backport of the extension::

     $ easy_install -U collective.dist

instead 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.

To push the package to the local pypi::

    $ python setup.py mregister sdist mupload -r local

.. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround