diff --git a/setup.py b/setup.py index 403a957..4e59020 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='ntripbrowser', - version='0.0.2', + version='0.0.3', author='Ivan Sapozhkov', author_email='ivan.sapozhkov@emlid.com', py_modules=['ntripbrowser'], @@ -11,4 +11,9 @@ url='https://github.com/emlid/ntripbrowser.git', description='NTRIP Browser for terminal', long_description=open('README.md').read(), + entry_points = { + 'console_scripts': [ + 'ntripbrowser = ntripbrowser:main', + ], + }, )