summaryrefslogtreecommitdiff
path: root/docs/userguide/entry_point.rst
diff options
context:
space:
mode:
authorSaniya Maheshwari <55744224+codeandfire@users.noreply.github.com>2022-06-09 21:47:50 +0530
committerGitHub <noreply@github.com>2022-06-09 21:47:50 +0530
commitfa33b3bc2384460e02f13606504875d9be85029b (patch)
tree1f663a2da8b6c600a791e25d80d73b4a00d49ec5 /docs/userguide/entry_point.rst
parentbf7da8b333184dbf163e129567efffa58837965c (diff)
downloadpython-setuptools-git-fa33b3bc2384460e02f13606504875d9be85029b.tar.gz
Add note regarding `PySimpleGUI`
`PySimpleGUI` must be added to package dependencies in order to run the example in the GUI scripts section. Co-authored-by: Anderson Bravalheri <andersonbravalheri+github@gmail.com>
Diffstat (limited to 'docs/userguide/entry_point.rst')
-rw-r--r--docs/userguide/entry_point.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/userguide/entry_point.rst b/docs/userguide/entry_point.rst
index 5d1ed977..40b9ea42 100644
--- a/docs/userguide/entry_point.rst
+++ b/docs/userguide/entry_point.rst
@@ -160,6 +160,9 @@ Then, we can add a GUI script entry point:
[project.gui-scripts]
hello-world = "timmins:hello_world"
+.. note::
+ To be able to import `PySimpleGUI`, you need to add `pysimplegui` to your package dependencies.
+ See :doc:`/userguide/dependency_management` for more information.
Now, running:
.. code-block:: bash