Skip to content

Commit 357d3a0

Browse files
author
Kenneth Reitz
committed
Merge pull request realpython#28 from kisielk/master
Grammar and spelling fixes in packaging.rst
2 parents 9a1142b + fbee6f5 commit 357d3a0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/shipping/packaging.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Packaging your code is important.
77
For Python Developers
88
:::::::::::::::::::::
99

10-
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.
10+
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.
1111

1212

1313

@@ -17,14 +17,14 @@ Pip vs. easy_install
1717
Use pip. More details `here <http://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install>`_
1818

1919

20-
Personal PyPi
20+
Personal PyPI
2121
-------------
2222

2323
If you want to install packages from a source different from PyPI, (say, if
2424
your packages are *proprietary*), you can do it by hosting a simple http server,
2525
running from the directory which holds those packages which need to be installed.
2626

27-
**Showing an example is always benificial**
27+
**Showing an example is always beneficial**
2828

2929
Say if you are after installing a package called MyPackage.tar.gz, and assuming this is your directory structure
3030

@@ -39,14 +39,14 @@ Go to your command prompt and type:
3939
$ cd archive
4040
$ python -m SimpleHTTPServer 9000
4141

42-
This runs a simple http server running on port 9000 and will list down all packages(like **MyPackage**). Now you can install **MyPackage** using any python package installer. Using Pip, you would do it like:
42+
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:
4343
::
4444

4545
$ pip install --extra-index-url=http://127.0.0.1:9000/ MyPackage
4646

47-
Remember! having a folder with the same name as the package name is **crucia** here.
47+
Having a folder with the same name as the package name is **crucial** here.
4848
I got fooled by that, one time. But if you feel that creating a folder called
49-
**MyPackag** and keeping **MyPackage.tar.gz** inside that, is *reduntant*, you can still install MyPackage using:
49+
**MyPackage** and keeping **MyPackage.tar.gz** inside that, is *redundant*, you can still install MyPackage using:
5050
::
5151

5252
$ pip install http://127.0.0.1:9000/MyPackage.tar.gz
@@ -59,7 +59,7 @@ For Linux Distributions
5959
::::::::::::::::::::::::
6060

6161
Useful Tools
62-
````````````
62+
------------
6363

6464
- epm
65-
- alien
65+
- alien

0 commit comments

Comments
 (0)