From 2d7ce99b7457ec9c8c321117cd30555beec76477 Mon Sep 17 00:00:00 2001 From: fardin Date: Thu, 6 Feb 2020 02:26:57 -0500 Subject: [PATCH] fixed setup package data --- setup.py | 7 ++++++- websploit/core/utils/version.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 32dadd7..7a101fc 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import codecs from setuptools import setup, find_packages -WEBSPLOIT_VERSION = "4.0.3" +WEBSPLOIT_VERSION = "4.0.4" WEBSPLOIT_DOWNLOAD = ('https://github.com/websploit/websploit/tarball/' + WEBSPLOIT_VERSION) @@ -27,6 +27,11 @@ def read_requirements(): 'websploit.core', 'websploit.core.base', 'websploit.core.utils'], + package_data={ + 'websploit.core': [ + 'utils/*', + ], + }, version=WEBSPLOIT_VERSION, description='Websploit is a high level MITM framework', diff --git a/websploit/core/utils/version.py b/websploit/core/utils/version.py index 7c93883..db2e32e 100644 --- a/websploit/core/utils/version.py +++ b/websploit/core/utils/version.py @@ -1 +1 @@ -version = "4.0.3" \ No newline at end of file +version = "4.0.4" \ No newline at end of file