From 53139c25f959f411b4e6d82f0447390dae03e11f Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 18 May 2021 16:45:56 +0200 Subject: [PATCH] Fixed console_scripts module path --- nomadnet/_version.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nomadnet/_version.py b/nomadnet/_version.py index a0235ce..e344246 100644 --- a/nomadnet/_version.py +++ b/nomadnet/_version.py @@ -1 +1 @@ -__version__ = "0.0.2" \ No newline at end of file +__version__ = "0.0.3" \ No newline at end of file diff --git a/setup.py b/setup.py index 10378cb..7c3db33 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setuptools.setup( "Operating System :: OS Independent", ], entry_points= { - 'console_scripts': ['nomadnet=nomadnet:main'] + 'console_scripts': ['nomadnet=nomadnet.nomadnet:main'] }, install_requires=['rns>=0.2.0', 'lxmf>=0.0.3', 'urwid>=2.1.2'], python_requires='>=3.5',