Updated README and setup.py from my experiments.

This commit is contained in:
Michael Herzberg 2017-09-01 20:01:53 +01:00
parent 4980bdbe9e
commit f20da9490f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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']
)