From f20da9490fc98673c85bd6cce5985787ab254e3f Mon Sep 17 00:00:00 2001 From: Michael Herzberg Date: Fri, 1 Sep 2017 20:01:53 +0100 Subject: [PATCH] Updated README and setup.py from my experiments. --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a1a663..6d79b26 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Clone and use pip to install as a package. ```shell git clone git@logicalhacking.com:BrowserSecurity/ExtensionCrawler.git -pip install -e ExtensionCrawler +pip install --user -e ExtensionCrawler ``` ## Team diff --git a/setup.py b/setup.py index c847faa..5e39deb 100644 --- a/setup.py +++ b/setup.py @@ -5,5 +5,5 @@ setup( description='A collection of utilities for downloading and analyzing browser extension from the Chrome Web store.', author='Achim D. Brucker, Michael Herzberg', license='GPL 3.0', - install_requires=['tabulate', 'requests', 'pycrypto', 'beautifulsoup3', 'python_dateutil', 'mysqlclient', 'cchardet'] + install_requires=['tabulate', 'requests', 'pycrypto', 'beautifulsoup4', 'python_dateutil', 'mysqlclient', 'cchardet'] )