diff --git a/brian_polling_manager/cli.py b/brian_polling_manager/cli.py
index b2cc6102d1647f0e476b384a91bc556bee8f2dff..ea01e1ac5367d25b1aafc49d9777a40386eb2779 100644
--- a/brian_polling_manager/cli.py
+++ b/brian_polling_manager/cli.py
@@ -5,8 +5,8 @@ required by BRIAN.
 
 .. code-block:: console
 
-    % python brian_polling_manager/cli.py --help
-    Usage: cli.py [OPTIONS]
+    % brian-polling-manager --help
+    Usage: brian-polling-manager [OPTIONS]
 
       Update BRIAN snmp checks based on Inventory Provider data.
 
@@ -15,7 +15,6 @@ required by BRIAN.
       --force / --no-force  update even if inventory hasn't been updated
       --help                Show this message and exit.
 
-
 The required configuration file must be
 formatted according to the following schema:
 
diff --git a/docs/source/cli.rst b/docs/source/cli.rst
index 0255ffa9daada3086ede5f35c2504d5d15e289d5..128c1a0d70a7d1bd43ed6b1e2991dae613a4d20a 100644
--- a/docs/source/cli.rst
+++ b/docs/source/cli.rst
@@ -1,5 +1,5 @@
 
-cli
+brian-polling-manager
 ===================================================
 
 .. automodule:: brian_polling_manager.cli
diff --git a/setup.py b/setup.py
index 6e52a005fe6a3372b5476e5ccb1e464e57a13053..f53e1c4118a819da753048aed7516a17c33f3bee 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ setup(
     ],
     entry_points={
         'console_scripts': [
-            'cli=brian_polling_manager.cli:main'
+            'brian-polling-manager=brian_polling_manager.cli:main'
         ]
     },
 )