diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-12-03 00:22:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-12-03 00:55:57 +0100 |
commit | ed2b2a1e7000dcb6d15c685f15314e0254ab3dbe (patch) | |
tree | 576b5e917de2ad0d5384dec8b3a5e83a2d7516a4 /setup.py | |
parent | ff458243cf0f34bec5be99c2b44af58d91fbc60f (diff) | |
download | gemato-ed2b2a1e7000dcb6d15c685f15314e0254ab3dbe.tar.gz |
Switch to setuptools entry_points
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,7 +24,11 @@ setup( }, packages=['gemato'], - scripts=['bin/gemato'], + entry_points={ + 'console_scripts': [ + 'gemato=gemato.cli:setuptools_main', + ], + }, classifiers=[ 'Development Status :: 4 - Beta', |