1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
"""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'])
|