pwnagotchi/setup.py
SecurityWaffle e369d596d6
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'
2019-10-05 21:22:03 -05:00

29 lines
958 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
import pwnagotchi
required = []
with open('requirements.txt') as fp:
for line in fp:
line = line.strip()
if line != "":
required.append(line)
setup(name='pwnagotchi',
version=pwnagotchi.version,
description='(⌐■_■) - Deep Reinforcement Learning instrumenting bettercap for WiFI pwning.',
author='evilsocket && the dev team',
author_email='evilsocket@gmail.com',
url='https://pwnagotchi.ai/',
license='GPL',
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',
])