Merge pull request #172 from SecurityWaffle/patch-1

Fixes "No module named 'pwnagotchi'" error
This commit is contained in:
evilsocket 2019-10-06 12:28:53 +02:00 committed by GitHub
commit 18b5f95db2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,9 +19,10 @@ setup(name='pwnagotchi',
install_requires=required, install_requires=required,
scripts=['bin/pwnagotchi'], scripts=['bin/pwnagotchi'],
package_data={'pwnagotchi': ('pwnagotchi/defaults.yml',)}, package_data={'pwnagotchi': ('pwnagotchi/defaults.yml',)},
packages=find_packages(),
classifiers=[ classifiers=[
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)', 'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: Console', 'Environment :: Console',
]) ])