diff --git a/qot/__init__.py b/qot/__init__.py index e67bcfc..818ccdb 100644 --- a/qot/__init__.py +++ b/qot/__init__.py @@ -1,2 +1,2 @@ def qot(): - print('Qot.') + return 'Qot.' diff --git a/setup.py b/setup.py index f192778..bf605c2 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup(name='qot', description='qot', long_description='qot', author='qot', - license='MIT', + license='qot', packages=['qot'], entry_points={'console_scripts': ['qot=qot:qot']}, )