diff --git a/setup.py b/setup.py
index 2d1f77e3cc9ba8ecf80d4f01b2af410bbf2baa0a..9f8288c39b3e29114afec922d0810fca760eca3e 100644
--- a/setup.py
+++ b/setup.py
@@ -67,4 +67,10 @@ setup(
 
     # This is recursive include of data files
     exclude_package_data={"": ["__pycache__"]},
+    # Command line
+    entry_points={
+        'console_scripts': [
+            'rpg=rpg.RapidPeptidesGenerator:main'
+        ]
+    }
 )