forked from chorsley/python-Wappalyzer
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (25 loc) · 839 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(
name="python-Wappalyzer",
version="0.2.3",
description="Python implementation of the Wappalyzer web application "
"detection utility",
author="Clay McClure, Marcello Salvati (@byt3bl33d3r)",
author_email="clay@daemons.net",
url="https://github.com/chorsley/python-Wappalyzer",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
packages=find_packages(),
package_data={'Wappalyzer': ['data/apps.json']},
install_requires=[
'beautifulsoup4',
'lxml',
'requests',
'aiohttp',
]
)