"""setup""" from setuptools import setup with open('VERSION', 'r') as version_file: version = version_file.read().strip() setup(name='restic-wrapper', version=version, description='stupid wrapper to restic', long_description=' '.join(''' glues sh with restic '''.split()), author='Max Resnick', author_email='max@ofmax.li', url='git@git.ofmax.li:restic_wrapper', license='BSD', py_modules=['restic'], entry_points={ 'console_scripts': ['rw=restic:main'] }, packages=[], classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Utilities'])