diff --git a/docs/en_US/release_notes_4_3.rst b/docs/en_US/release_notes_4_3.rst index 27cc5c406..e4ec94e46 100644 --- a/docs/en_US/release_notes_4_3.rst +++ b/docs/en_US/release_notes_4_3.rst @@ -4,7 +4,12 @@ Version 4.3 Release date: 2019-03-07 -This release contains a number of fixes reported since the release of pgAdmin4 4.2 +This release contains a number of new features and fixes reported since the release of pgAdmin4 4.2 + +Features +******** + +| `Feature #1825 `_ - Install a script to start pgAdmin (pgadmin4) from the command line when installed from the Python wheel. Bug fixes ********* diff --git a/pkg/pip/setup_pip.py b/pkg/pip/setup_pip.py index f1bb4af45..07467b86d 100644 --- a/pkg/pip/setup_pip.py +++ b/pkg/pip/setup_pip.py @@ -96,6 +96,8 @@ setup( ##data_files=, # 'scripts' keyword is used to provide executable scripts. It provides cross-platform support. - ##entry_points=, + entry_points={ + 'console_scripts': ['pgadmin4=pgadmin4.pgAdmin4.__init__:main'], + }, )