fixes issue where defaults.yml is not included in the install

This commit is contained in:
SecurityWaffle 2019-10-06 13:41:55 -05:00 committed by GitHub
parent 1cf45138b8
commit a3052c3b99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,8 @@ setup(name='pwnagotchi',
license='GPL', license='GPL',
install_requires=required, install_requires=required,
scripts=['bin/pwnagotchi'], scripts=['bin/pwnagotchi'],
package_data={'pwnagotchi': ('pwnagotchi/defaults.yml',)}, package_data={'pwnagotchi': ['defaults.yml', 'pwnagotchi/defaults.yml']},
include_package_data=True,
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',