mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-14 20:13:21 -04:00
include attic.tar.gz when installing the package
This commit is contained in:
parent
1932fe8ea9
commit
8aba5772b5
1 changed files with 3 additions and 2 deletions
5
setup.py
5
setup.py
|
|
@ -776,7 +776,6 @@ setup(
|
|||
],
|
||||
packages=find_packages('src'),
|
||||
package_dir={'': 'src'},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
|
@ -784,8 +783,10 @@ setup(
|
|||
'borgfs = 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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue