Browse Source

include attic.tar.gz when installing the package

also: add include_package_data=True to get it in sync with master branch
Thomas Waldmann 8 years ago
parent
commit
91b0b3a442
1 changed files with 3 additions and 1 deletions
  1. 3 1
      setup.py

+ 3 - 1
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,