diff options
| author | Max Resnick <max@ofmax.li> | 2018-11-03 16:30:48 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2018-11-03 16:32:25 -0700 |
| commit | 75a06c534e0f5bf872d6818f9de4bfb39e64bc9a (patch) | |
| tree | 28bdddfeae88939399375d1e10b5f2c3226992d4 /setup.py | |
| parent | 002e965f6d1201fc1a33d76978de27c7db6b1b6f (diff) | |
| download | restic-wrapper-75a06c534e0f5bf872d6818f9de4bfb39e64bc9a.tar.gz | |
Initial Commit
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..226e1e8 --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +"""setup""" + +from setuptools import setup + + +with open('VERSION', 'r') as version_file: + version = version_file.read().strip() + +setup(name='restic', + 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=[], + install_requires=['sh'], + 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']) |