Add setup.py

This commit is contained in:
Jack Deadman 2017-08-18 17:00:10 +01:00
parent 623ddf57a3
commit 181d0de788
1 changed files with 9 additions and 0 deletions

9
setup.py Normal file
View File

@ -0,0 +1,9 @@
from setuptools import setup
setup(
name='Extension Crawler',
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=['requests', 'pycrypto', 'beautifulsoup4', 'python_dateutil']
)