-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (43 loc) · 1.29 KB
/
setup.py
File metadata and controls
46 lines (43 loc) · 1.29 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
# Author:
# Nathan Faillenot (codejump - @c0dejump)
import pathlib
import setuptools
from setuptools import setup, find_packages, Extension
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="HawkScan",
version="2.2",
author="c0dejump",
author_email="codejumpgame@gmail.com",
description="Security Tool for Reconnaissance and Information Gathering on a website. (python 3.x)",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["static"]),
include_package_data=True,
url="https://github.com/c0dejump/HawkScan/",
install_requires=[
'requests',
'pyopenssl',
'queuelib',
'fake_useragent',
'argparse',
'bs4',
'dnspython',
'wafw00f',
'python-whois',
'sockets',
'python-engineio==3.14.2',
'python-socketio[client]==4.6.0',
'google',
'notifypy'
],
project_urls={
"Bug Tracker": "https://github.com/c0dejump/HawkScan/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)