summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/distributing.rst
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2018-11-26 10:58:15 -0600
committerGitHub <noreply@github.com>2018-11-26 10:58:15 -0600
commit81171e861d25d394c0ccb8a6139a9b89dc4f039c (patch)
treee80fdb447bf7f491ae68344fea8895b04cdf0016 /docs/tutorials/wiki/distributing.rst
parentfeedf4cc38a59ee3f83c8a01b4632f1df6b7d645 (diff)
parent05292fb519ad33c74663221e7bd6da68eedceb72 (diff)
downloadpyramid-81171e861d25d394c0ccb8a6139a9b89dc4f039c.tar.gz
pyramid-81171e861d25d394c0ccb8a6139a9b89dc4f039c.tar.bz2
pyramid-81171e861d25d394c0ccb8a6139a9b89dc4f039c.zip
Merge pull request #8 from stevepiercy/drop-py2
Drop py2 from wiki (traversal and zodb)
Diffstat (limited to 'docs/tutorials/wiki/distributing.rst')
-rw-r--r--docs/tutorials/wiki/distributing.rst18
1 files changed, 7 insertions, 11 deletions
diff --git a/docs/tutorials/wiki/distributing.rst b/docs/tutorials/wiki/distributing.rst
index 36d00adb4..c23f79b5a 100644
--- a/docs/tutorials/wiki/distributing.rst
+++ b/docs/tutorials/wiki/distributing.rst
@@ -4,10 +4,8 @@
Distributing Your Application
=============================
-Once your application works properly, you can create a "tarball" from it by
-using the ``setup.py sdist`` command. The following commands assume your
-current working directory contains the ``tutorial`` package and the
-``setup.py`` file.
+Once your application works properly, you can create a :term:`distribution` from it by using the ``setup.py sdist`` command.
+The following commands assume your current working directory contains the ``tutorial`` package and the ``setup.py`` file.
On Unix:
@@ -31,10 +29,8 @@ The output of such a command will be something like:
Creating tar archive
removing 'tutorial-0.0' (and everything under it)
-Note that this command creates a tarball in the "dist" subdirectory named
-``tutorial-0.0.tar.gz``. You can send this file to your friends to show them
-your cool new application. They should be able to install it by pointing the
-``pip install`` command directly at it. Or you can upload it to `PyPI
-<https://pypi.org/>`_ and share it with the rest of the world, where
-it can be downloaded via ``pip install`` remotely like any other package people
-download from PyPI.
+This command creates a subdirectory named ``dist``.
+Inside that is a tarball named ``tutorial-0.0.tar.gz``, which is the :term:`distribution` of your application.
+You can send this file to your friends to show them your cool new application.
+They should be able to install it by pointing the ``pip install`` command directly at it.
+Or you can upload it to `PyPI <https://pypi.org/>`_ and share it with the rest of the world, where it can be downloaded via ``pip install`` remotely like any other package people download from PyPI.