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