diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..55e0a5d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,8 @@ +exclude *.pyc .DS_Store .gitignore MANIFEST.in +include setup.py +include distribute_setup.py +include README.md +include LICENSE +recursive-include bin * +recursive-include pwnagotchi *.py +recursive-include pwnagotchi *.yml diff --git a/setup.py b/setup.py index 9761640..3075614 100644 --- a/setup.py +++ b/setup.py @@ -15,9 +15,10 @@ setup(name='pwnagotchi', author='evilsocket && the dev team', author_email='evilsocket@gmail.com', url='https://pwnagotchi.ai/', + license='GPL', install_requires=required, scripts=['bin/pwnagotchi'], - license='GPL', + package_data={'pwnagotchi': ('pwnagotchi/defaults.yml',)}, classifiers=[ 'Programming Language :: Python :: 3', 'Development Status :: 5 - Production/Stable',