diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7cf4d24 --- /dev/null +++ b/setup.py @@ -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'] +)