ExtensionCrawler/setup.py

13 lines
373 B
Python
Raw Permalink Normal View History

2017-08-18 16:00:10 +00:00
from setuptools import setup
2018-04-21 18:00:07 +00:00
with open('requirements.txt') as f:
requirements = f.read().splitlines()
2017-08-18 16:00:10 +00:00
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',
2018-04-21 18:00:07 +00:00
install_requires=requirements
2017-08-18 16:00:10 +00:00
)