From fe28ab32462be1163a355bb0f30ec468ad38a13e Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Thu, 8 Oct 2020 12:30:55 +0200 Subject: [PATCH] BUGFIX: main() not found --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b4be3b..6986676 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setuptools.setup( url="https://git.rudefox.io/bj/torch-agent", packages=setuptools.find_packages(), entry_points = { - 'console_scripts': ['torch-agent=torch_agent:main'], + 'console_scripts': ['torch-agent=torch_agent.torch_agent:main'], }, classifiers=[ "Programming Language :: Python :: 3",