diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -9,10 +9,14 @@ setuptools.setup( #long_description=open('readme.rst').read(), author='VG', author_email='vg@devys.org', - license='GPLv3', + license='GPL-3.0+', keywords='mailing-list cli manager', url='http://git.devys.org/climl', install_requires=['imapclient'], + + entry_points={ + 'console_scripts': [ 'climl = climl:main' ], + }, ) |