forked from BrowserSecurity/ExtensionCrawler
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
344 B
9 lines
344 B
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'] |
|
)
|
|
|