Skip to content

Commit

Permalink
clarify usage of setuptools vs Setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Sep 11, 2024
1 parent 46fd8db commit ae0bde3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/userguide/datafiles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ location. However, the most common use case for data files distributed
with a package is for use *by* the package, usually by including the
data files **inside the package directory**.

``Setuptools`` focuses on this most common type of data files and offers three ways
Setuptools focuses on this most common type of data files and offers three ways
of specifying which files should be included in your packages, as described in
the following section.

Expand Down Expand Up @@ -177,7 +177,7 @@ file, nor require to be added by a revision control system plugin.

.. note::
If your glob patterns use paths, you *must* use a forward slash (``/``) as
the path separator, even if you are on Windows. ``Setuptools`` automatically
the path separator, even if you are on Windows. setuptools automatically
converts slashes to appropriate platform-specific separators at build time.

.. important::
Expand Down Expand Up @@ -455,7 +455,7 @@ With :ref:`package-data`, the configuration might look like this:
}
)
In other words, we allow ``Setuptools`` to scan for namespace packages in the ``src`` directory,
In other words, we allow setuptools to scan for namespace packages in the ``src`` directory,
which enables the ``data`` directory to be identified, and then, we separately specify data
files for the root package ``mypkg``, and the namespace package ``data`` under the package
``mypkg``.
Expand Down

0 comments on commit ae0bde3

Please sign in to comment.