diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -8,13 +8,13 @@ with open('VERSION', 'r') as version_file: setup(name='gitsnap', version=version, - description='distributed observability of systemd', + description='stupid bundler for bare repos', long_description=" ".join(""" simple tools for snapshotting git repos """.split()), author='Max Resnick', author_email='max@ofmax.li', - url='http://git.ofmax.li/gitsnap.git/', + url='https://git.ofmax.li/git-snapshot/', license="MIT", py_modules=['gitsnap'], packages=[], @@ -23,6 +23,10 @@ setup(name='gitsnap', 'boto3' ], keywords='', + entry_points=''' + [console_scripts] + gitsnap=gitsnap.snap:run + ''', classifiers=[ 'Development Status :: 3 - Alpha', 'Natural Language :: English', |