From d6b1e86333e8edb03a60b5028ba6534b4dbdbc38 Mon Sep 17 00:00:00 2001 From: Simone Margaritelli Date: Sat, 5 Oct 2019 23:28:29 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- MANIFEST.in | 8 ++++++++ setup.py | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in 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',