diff --git a/setup.py b/setup.py
index b75d0f10740dad6acffe151728735d2e40786c6f..bf4528fb292ce8d6cd249baaf06177ca3d8e6e4e 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ setuptools.setup(
     # Allow UTF-8 characters in README with encoding argument.
     long_description=open('README.rst', encoding="utf-8").read(),
     long_description_content_type='text/x-rst',
-    keywords=['python'],
+    keywords=['ib', 'interactive brokers', 'ibpy', 'tws'],
 
     author='IBG LLC',
     author_email='dnastase@interactivebrokers.com',
@@ -47,12 +47,14 @@ setuptools.setup(
     zip_safe=False,
 
     classifiers=[
-        'Development Status :: 4 - Beta',
+        'Development Status :: 6 - Mature',
         'Intended Audience :: Developers',
-        'License :: OSI Approved :: MIT License',
+        'License :: Other/Proprietary License',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3 :: Only',
+        'Programming Language :: Python :: 3.3',
+        'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
@@ -60,7 +62,4 @@ setuptools.setup(
         'Programming Language :: Python :: 3.9',
     ],
 
-    entry_points={
-        'console_scripts': ['fact=fact.cli:main'],
-    }
 )