From 91b0b3a44275c434d92ad59e7336efc02b65bb2b Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Mon, 26 Jun 2017 20:24:43 +0200 Subject: [PATCH] include attic.tar.gz when installing the package also: add include_package_data=True to get it in sync with master branch --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f65963d5..33116acde 100644 --- a/setup.py +++ b/setup.py @@ -270,8 +270,10 @@ setup( 'borg = borg.archiver:main', ] }, + include_package_data=True, package_data={ - 'borg': ['paperkey.html'] + 'borg': ['paperkey.html'], + 'borg.testsuite': ['attic.tar.gz'], }, cmdclass=cmdclass, ext_modules=ext_modules,