From 4b679b4d7cf4a045293f9e652aee818cd8649dc3 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 25 Oct 2010 17:41:12 -0400 Subject: rename bfgwiki to wiki --- docs/tutorials/bfgwiki/distributing.rst | 49 --------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 docs/tutorials/bfgwiki/distributing.rst (limited to 'docs/tutorials/bfgwiki/distributing.rst') diff --git a/docs/tutorials/bfgwiki/distributing.rst b/docs/tutorials/bfgwiki/distributing.rst deleted file mode 100644 index 81ec61a63..000000000 --- a/docs/tutorials/bfgwiki/distributing.rst +++ /dev/null @@ -1,49 +0,0 @@ -============================= -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 is the ``tutorial`` package -we've created and that the parent directory of the ``tutorial`` -package is a virtualenv representing a :mod:`pyramid` environment. - -On UNIX: - -.. code-block:: text - - $ ../bin/python setup.py sdist - -On Windows: - -.. code-block:: text - - c:\bigfntut> ..\Scripts\python setup.py sdist - -.. warning:: If your project files are not checked in to a version - control repository (such as Subversion), the dist tarball will - *not* contain all the files it needs to. In particular, it will - not contain non-Python-source files (such as templates and static - files). To ensure that these are included, check your files into a - version control repository before running ``setup.py sdist``. - -The output of such a command will be something like: - -.. code-block:: text - - running sdist - # .. more output .. - creating dist - tar -cf dist/tutorial-0.1.tar tutorial-0.1 - gzip -f9 dist/tutorial-0.1.tar - removing 'tutorial-0.1' (and everything under it) - -Note that this command creates a tarball in the "dist" subdirectory -named ``tutorial-0.1.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 ``easy_install`` command directly at it. -Or you can upload it to `PyPI `_ and share it -with the rest of the world, where it can be downloaded via -``easy_install`` remotely like any other package people download from -PyPI. - -- cgit v1.2.3