Fixes "No module named 'pwnagotchi'" error

/usr/local/bin/pwnagotchi                                                                                                                                                                                               Traceback (most recent call last):
  File "/usr/local/bin/pwnagotchi", line 8, in <module>
    import pwnagotchi
ModuleNotFoundError: No module named 'pwnagotchi'
This commit is contained in:
SecurityWaffle 2019-10-05 21:22:03 -05:00 committed by GitHub
parent 8b4350045e
commit e369d596d6
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,
scripts=['bin/pwnagotchi'],
package_data={'pwnagotchi': ('pwnagotchi/defaults.yml',)},
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: Console',
])
])