Skip to content

Commit

Permalink
fixed setup package data
Browse files Browse the repository at this point in the history
  • Loading branch information
fardin committed Feb 6, 2020
1 parent df3207b commit 2d7ce99
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion websploit/core/utils/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "4.0.3"
version = "4.0.4"

0 comments on commit 2d7ce99

Please sign in to comment.