summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-08-12 16:27:26 -0400
committerGitHub <noreply@github.com>2020-08-12 16:27:26 -0400
commitb71cc9236cb0af79ca0afeac49ae6b31d3855aeb (patch)
tree9ed6d865801908761fee093d90e8191b67b70ec9 /docs
parentf62a833c2bef9ecfd99e2da1516afb57ecc60491 (diff)
parent485703c854f59d226c2f231e7c5f4f91263a4463 (diff)
downloadpython-setuptools-git-b71cc9236cb0af79ca0afeac49ae6b31d3855aeb.tar.gz
Merge pull request #2314 from raimon49/provide-consistency-in-setup.cfg-docs
docs: Suggestion - Provide consistency in the description of setup.cfg
Diffstat (limited to 'docs')
-rw-r--r--docs/setuptools.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/setuptools.txt b/docs/setuptools.txt
index 7e0914b7..d60c87a0 100644
--- a/docs/setuptools.txt
+++ b/docs/setuptools.txt
@@ -1988,11 +1988,11 @@ boilerplate code in some cases.
include_package_data = True
packages = find:
scripts =
- bin/first.py
- bin/second.py
+ bin/first.py
+ bin/second.py
install_requires =
- requests
- importlib; python_version == "2.6"
+ requests
+ importlib; python_version == "2.6"
[options.package_data]
* = *.txt, *.rst
@@ -2028,8 +2028,8 @@ Metadata and options are set in the config sections of the same name.
[metadata]
keywords =
- one
- two
+ one
+ two
* In some cases, complex values can be provided in dedicated subsections for
clarity.