diff options
-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: |