Fix setup.py

This commit is contained in:
Rebecca Breu 2021-07-09 16:01:29 +02:00
parent ae71f231e3
commit 71b397b4ae

View file

@ -26,7 +26,11 @@ setup(
'beeref = beeref.__main__:main'
]
},
include_package_data=True,
package_data={
'assets': ['*.png', '*.html'],
'beeref': [
'assets/*.png',
'documentation/*.html'
],
},
)