Browse Source

added missing dependency

Fabian Peter Hammerle 7 years ago
parent
commit
09eef71fca
1 changed files with 6 additions and 2 deletions
  1. 6 2
      setup.py

+ 6 - 2
setup.py

@@ -5,7 +5,7 @@ import glob
 setup(
     name = 'duplitab',
     version = '0.1',
-    description = '',
+    description = 'wrapper for duplicity featuring persistent backup configuration',
     author = 'Fabian Peter Hammerle',
     author_email = 'fabian.hammerle@gmail.com',
     url = 'https://github.com/fphammerle/duplitab',
@@ -13,6 +13,10 @@ setup(
     keywords = ['backup', 'duplicity'],
     classifiers = [],
     scripts = glob.glob('scripts/*'),
-    install_requires = ['argparse', 'pyyaml'],
+    install_requires = [
+        'argparse',
+        'pyyaml',
+        'tabulate',
+        ],
     tests_require = ['pytest']
     )