diff options
| author | Max Resnick <max@ofmax.li> | 2020-01-22 22:39:40 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2020-01-22 22:39:40 -0800 |
| commit | b9bba34110e43663b13181bc4bef14133fc2cdcf (patch) | |
| tree | 92fc878988d3093ac716f2c30f97b77d2b18cf6b /setup.py | |
| parent | f54e38b77366f031f3822a9d1acd911a259112a4 (diff) | |
| download | git-snapshot-b9bba34110e43663b13181bc4bef14133fc2cdcf.tar.gz | |
add entrypoints, relocate entrypoint in script
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', |