summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Zhou <30874884+0az@users.noreply.github.com>2018-10-30 09:26:10 -0700
committerAndrew Zhou <30874884+0az@users.noreply.github.com>2018-10-30 09:26:10 -0700
commit22bb74122729f7f7735db420ef32b7c578ca0d13 (patch)
treee7461085149e2d95781998b92b0451605133988b
parentcdfeb2bdaa0d30889d53425c9bea6de7273b40cc (diff)
downloadpython-setuptools-git-22bb74122729f7f7735db420ef32b7c578ca0d13.tar.gz
Add version footnote
-rw-r--r--docs/setuptools.txt21
1 files changed, 12 insertions, 9 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index fe2a06f9..4e548066 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -2471,11 +2471,11 @@ Metadata
The aliases given below are supported for compatibility reasons,
but their use is not advised.
-============================== ================= ================= ===============
-Key Aliases Type Minumum Version
-============================== ================= ================= ===============
+============================== ================= ================= =============== =====
+Key Aliases Type Minumum Version Notes
+============================== ================= ================= =============== =====
name str
-version attr:, file:, str 39.2.0
+version attr:, file:, str 39.2.0 (1)
url home-page str
download_url download-url str
project_urls dict 38.3.0
@@ -2493,19 +2493,22 @@ platforms platform list-comma
provides list-comma
requires list-comma
obsoletes list-comma
-============================== ================= ================= ===============
+============================== ================= ================= =============== =====
.. note::
A version loaded using the ``file:`` directive must comply with PEP 440.
It is easy to accidentally put something other than a valid version
string in such a file, so validation is stricter in this case.
+Notes:
+1. The `version` file attribute has only been supported since 39.2.0.
+
Options
-------
-======================= =================================== ===============
-Key Type Minimum Version
-======================= =================================== ===============
+======================= =================================== =============== =====
+Key Type Minimum Version Notes
+======================= =================================== =============== =====
zip_safe bool
setup_requires list-semi
install_requires list-semi
@@ -2528,7 +2531,7 @@ exclude_package_data section
namespace_packages list-comma
py_modules list-comma
data_files dict 40.5.0
-======================= =================================== ===============
+======================= =================================== =============== =====
.. note::