-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.85 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (48 loc) · 1.85 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
def get_description():
try:
with open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
return long_description
except:
return None
setup(
name="wappalyzer-python3",
version='0.0.11',
description="Identify the technologies used on websites. Maintained fork of the archived python-Wappalyzer by Chris Horsley (chorsley) and contributors.",
long_description_content_type="text/markdown",
long_description=get_description(),
author="Chetan",
author_email="53407137+Chetan11-dev@users.noreply.github.com",
maintainer="Chetan",
maintainer_email="53407137+Chetan11-dev@users.noreply.github.com",
license="GPLv3",
python_requires=">=3.9",
keywords=[
"wappalyzer", "technology", "detection", "fingerprint", "scraping", "web"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
install_requires=[
"beautifulsoup4",
"lxml",
"requests",
],
url="https://github.com/omkarcloud/wappalyzer-python3",
project_urls={
"Homepage": "https://github.com/omkarcloud/wappalyzer-python3",
"Bug Reports": "https://github.com/omkarcloud/wappalyzer-python3/issues",
"Source": "https://github.com/omkarcloud/wappalyzer-python3",
},
packages=find_packages(include=["Wappalyzer", "Wappalyzer.*"]),
package_data={"Wappalyzer": ["data/technologies.json"]},
include_package_data=True,
)