Skip to content

Commit

Permalink
Merge pull request #10 from markgacoka/main_bugfix
Browse files Browse the repository at this point in the history
Fix no module named engines found bug
  • Loading branch information
markgacoka authored Mar 6, 2022
2 parents 979ab44 + 002d2d4 commit bb445e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion r3c0n/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Version of the r3c0n package
__version__ = "1.1.8"
__version__ = "1.2.3"
2 changes: 1 addition & 1 deletion r3c0n/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
from engines import anubis
from r3c0nutils.engines import anubis
import r3c0nutils.viewer as viewer

def main():
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# The text of the README file
README = (PATH / "README.md").read_text()

VERSION="1.1.9"
VERSION="1.2.3"
DESCRIPTION="A tool for performing reconnaissance on web targets in Python."
LONG_DESCRIPTION="A tool for finding subdomain and directory information for various web targets."

Expand All @@ -25,7 +25,7 @@
download_url="https://github.com/markgacoka/r3c0n/releases",
packages=['r3c0n', 'r3c0nutils', 'r3c0n.engines'],
include_package_data=True,
install_requires=['beautifulsoup4', 'json', 'requests', 'urllib3', 'yarl'],
install_requires=['beautifulsoup4', 'requests', 'urllib3', 'yarl'],
entry_points={
"console_scripts": [
"r3c0n=r3c0n.__main__:main"
Expand Down

0 comments on commit bb445e0

Please sign in to comment.