You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/shipping/packaging.rst
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,8 @@ You'll need to package your code first before sharing it with other developers.
8
8
For Python Developers
9
9
:::::::::::::::::::::
10
10
11
-
If you're writing an open source Python module, `PyPI <http://pypi.python.org>`_, more properly known as *The Cheeseshop*, is the place to host it.
11
+
If you're writing an open source Python module, `PyPI <http://pypi.python.org>`_,
12
+
more properly known as *The Cheeseshop*, is the place to host it.
12
13
13
14
14
15
@@ -27,7 +28,8 @@ running from the directory which holds those packages which need to be installed
27
28
28
29
**Showing an example is always beneficial**
29
30
30
-
Say if you are after installing a package called MyPackage.tar.gz, and assuming this is your directory structure
31
+
Say if you are after installing a package called MyPackage.tar.gz, and
32
+
assuming this is your directory structure:
31
33
32
34
33
35
- archive
@@ -40,22 +42,27 @@ Go to your command prompt and type:
40
42
$ cd archive
41
43
$ python -m SimpleHTTPServer 9000
42
44
43
-
This runs a simple http server running on port 9000 and will list all packages (like **MyPackage**). Now you can install **MyPackage** using any python package installer. Using Pip, you would do it like:
45
+
This runs a simple http server running on port 9000 and will list all packages
46
+
(like **MyPackage**). Now you can install **MyPackage** using any python
47
+
package installer. Using Pip, you would do it like:
`Chishop <https://github.com/benliles/djangopypi>`_ is a simple PyPI server written in django which allows you to register/upload with distutils and install with easy_install/pip.
63
+
`Chishop <https://github.com/benliles/djangopypi>`_ is a simple PyPI server
64
+
written in django which allows you to register/upload with distutils and
0 commit comments