diff options
author | Greg Solon <greg.solon@gmail.com> | 2020-10-20 21:55:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 21:55:56 +0800 |
commit | d7170a28dc3ad02eacc69d1c425bb6f1d5afe619 (patch) | |
tree | e83e1acb0314b713a96690e5d68ea856657e9e41 | |
parent | 544687c3982696d924d49c4c9ea094b7a2dc8fe0 (diff) | |
download | python-setuptools-git-d7170a28dc3ad02eacc69d1c425bb6f1d5afe619.tar.gz |
Update quickstart.rst
Removed quotes in setup.cfg which caused build to fail.
-rw-r--r-- | docs/userguide/quickstart.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/userguide/quickstart.rst b/docs/userguide/quickstart.rst index 697087ed..a9cb76a4 100644 --- a/docs/userguide/quickstart.rst +++ b/docs/userguide/quickstart.rst @@ -43,11 +43,11 @@ such as metadata, contents, dependencies, etc. Here we demonstrate the minimum .. code-block:: ini [metadata] - name = "mypackage" + name = mypackage version = 0.0.1 [options] - packages = "mypackage" + packages = mypackage install_requires = requests importlib; python_version == "2.6" |