aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2018-11-03 16:30:48 -0700
committerMax Resnick <max@ofmax.li>2018-11-03 16:32:25 -0700
commit75a06c534e0f5bf872d6818f9de4bfb39e64bc9a (patch)
tree28bdddfeae88939399375d1e10b5f2c3226992d4 /setup.py
parent002e965f6d1201fc1a33d76978de27c7db6b1b6f (diff)
downloadrestic-wrapper-75a06c534e0f5bf872d6818f9de4bfb39e64bc9a.tar.gz
Initial Commit
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py32
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'])