diff options
author | Saniya Maheshwari <55744224+codeandfire@users.noreply.github.com> | 2022-06-09 21:47:50 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 21:47:50 +0530 |
commit | fa33b3bc2384460e02f13606504875d9be85029b (patch) | |
tree | 1f663a2da8b6c600a791e25d80d73b4a00d49ec5 | |
parent | bf7da8b333184dbf163e129567efffa58837965c (diff) | |
download | python-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>
-rw-r--r-- | docs/userguide/entry_point.rst | 3 |
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 |