"""setup""" from setuptools import setup with open('VERSION', 'r') as version_file: version = version_file.read().strip() setup(name='gitsnap', version=version, 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='https://git.ofmax.li/git-snapshot/', license="MIT", packages=['gitsnap'], install_requires=[ 'sh', 'boto3' ], keywords='', entry_points=''' [console_scripts] gitsnap=gitsnap.snap:run ''', classifiers=[ 'Development Status :: 3 - Alpha', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries', 'Topic :: Utilities'])