diff options
author | Jac Fitzgerald <jac.fitzgerald@salesforce.com> | 2022-06-23 22:54:38 -0700 |
---|---|---|
committer | Jac Fitzgerald <jac.fitzgerald@salesforce.com> | 2022-06-23 22:54:38 -0700 |
commit | 1f06878a141ca09d24fb7d9aa74cfdc3a5ddb342 (patch) | |
tree | 9b4f60d005ebdd8b2e0f5e4e7fbbc7dc5ed93e59 /docs/userguide/pyproject_config.rst | |
parent | 669be5ef1d93e2fa088cc5d1dfd999e0db61abcf (diff) | |
download | python-setuptools-git-1f06878a141ca09d24fb7d9aa74cfdc3a5ddb342.tar.gz |
[Docs] Missing requires-python in "using pyproject.toml" #3305
Diffstat (limited to 'docs/userguide/pyproject_config.rst')
-rw-r--r-- | docs/userguide/pyproject_config.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/userguide/pyproject_config.rst b/docs/userguide/pyproject_config.rst index 9ce983b4..7c574602 100644 --- a/docs/userguide/pyproject_config.rst +++ b/docs/userguide/pyproject_config.rst @@ -44,6 +44,7 @@ The ``project`` table contains metadata fields as described by name = "my_package" description = "My package description" readme = "README.rst" + requires-python = ">3.5.2" keywords = ["one", "two"] license = {text = "BSD 3-Clause License"} classifiers = [ @@ -63,6 +64,7 @@ The ``project`` table contains metadata fields as described by [project.scripts] my-script = "my_package.module:function" + # ... other project metadata fields as specified in PEP 621 .. _setuptools-table: |