forked from laramies/theHarvester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·42 lines (39 loc) · 1.41 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import find_packages, setup
from theHarvester.lib.version import version
with open("README.md", "r") as fh:
long_description: str = fh.read()
setup(
name="theHarvester",
version=version(),
author="Christian Martorella",
author_email="[email protected]",
description="theHarvester is a very simple, yet effective tool designed to be used in the early stages of a penetration test",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/laramies/theHarvester",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.9",
scripts=["bin/theHarvester", "bin/restfulHarvest"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
data_files=[
(
"/etc/theHarvester",
[
"wordlists/general/common.txt",
"wordlists/dns-big.txt",
"wordlists/dns-names.txt",
"wordlists/dorks.txt",
"wordlists/names_small.txt",
"api-keys.yaml",
"proxies.yaml",
],
)
],
)