summaryrefslogtreecommitdiff
path: root/docs/userguide/datafiles.rst
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-16 21:50:25 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-16 21:50:25 +0100
commit9c7163bc6030e546ba1133de823d0b4ac06a02d9 (patch)
treea7ebac5aa04a78e22fc7882ddc9872208ef463b0 /docs/userguide/datafiles.rst
parent94ff0b480541b9ccc1799bbef32a4f65caa0fc75 (diff)
downloadpython-setuptools-git-9c7163bc6030e546ba1133de823d0b4ac06a02d9.tar.gz
Change wording from *experimental* to *beta*
Diffstat (limited to 'docs/userguide/datafiles.rst')
-rw-r--r--docs/userguide/datafiles.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/userguide/datafiles.rst b/docs/userguide/datafiles.rst
index 3a2ffbdf..8501e95d 100644
--- a/docs/userguide/datafiles.rst
+++ b/docs/userguide/datafiles.rst
@@ -56,7 +56,7 @@ and you supply this configuration:
include_package_data=True
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -137,7 +137,7 @@ data files:
package_data={"mypkg": ["*.txt", "*.rst"]}
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -210,7 +210,7 @@ use the ``package_data`` option, the following configuration will work:
package_data={"": ["*.txt"], "mypkg1": ["data1.rst"]},
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -288,7 +288,7 @@ use the ``exclude_package_data`` option:
exclude_package_data={"mypkg": [".gitattributes"]},
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -365,7 +365,7 @@ the configuration might look like this:
}
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -412,7 +412,7 @@ scanning of namespace packages in the ``src`` directory and the rest is handled
include_package_data=True,
)
-.. tab:: pyproject.toml (**EXPERIMENTAL**) [#experimental]_
+.. tab:: pyproject.toml (**BETA**) [#beta]_
.. code-block:: toml
@@ -539,10 +539,10 @@ run time be included **inside the package**.
----
-.. [#experimental]
- Support for specifying package metadata and build configuration options via
- ``pyproject.toml`` is experimental and might change
- in the future. See :doc:`/userguide/pyproject_config`.
+.. [#beta]
+ Support for adding build configuration options via the ``[tool.setuptools]``
+ in the ``pyproject.toml`` file table is still in **beta** stage.
+ See :doc:`/userguide/pyproject_config`.
.. [#system-dirs] These locations can be discovered with the help of
third-party libraries such as :pypi:`platformdirs`.