Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Note that MANIFEST.in does not affect wheels #332

Merged
merged 2 commits into from Jun 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 5 additions & 6 deletions source/tutorials/distributing-packages.rst
Expand Up @@ -89,22 +89,21 @@ sample project <https://github.com/pypa/sampleproject>`_
MANIFEST.in
~~~~~~~~~~~

A "MANIFEST.in" is needed in certain cases where you need to package additional
files that ``python setup.py sdist (or bdist_wheel)`` don't automatically
include. To see a list of what's included by default, see the `Specifying the
files to distribute
<https://docs.python.org/3.4/distutils/sourcedist.html#specifying-the-files-to-distribute>`_
A :file:`MANIFEST.in` is needed in certain cases where you need to package
additional files that are not automatically included in a source distribution.
To see a list of what's included by default, see the `Specifying the files to
distribute <https://docs.python.org/3.4/distutils/sourcedist.html#specifying-the-files-to-distribute>`_
section from the :ref:`distutils` documentation.

For an example, see the `MANIFEST.in
<https://github.com/pypa/sampleproject/blob/master/MANIFEST.in>`_ from the `PyPA
sample project <https://github.com/pypa/sampleproject>`_


For details on writing a ``MANIFEST.in`` file, see the `The MANIFEST.in template
<https://docs.python.org/2/distutils/sourcedist.html#the-manifest-in-template>`_
section from the :ref:`distutils` documentation.

.. note:: :file:`MANIFEST.in` does not affect binary distributions such as wheels.

<your package>
~~~~~~~~~~~~~~
Expand Down