ExtensionCrawler/setup.py

10 lines
396 B
Python
Raw Normal View History

2017-08-18 16:00:10 +00:00
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',
2017-09-07 19:25:05 +00:00
install_requires=['GitPython', 'tabulate', 'requests', 'pycrypto', 'beautifulsoup4', 'python_dateutil', 'mysqlclient', 'cchardet']
2017-08-18 16:00:10 +00:00
)