2020-08-18 07:08:07 +08:00
|
|
|
from setuptools import setup, find_packages
|
2019-04-19 23:18:49 +08:00
|
|
|
from theHarvester.lib.core import Core
|
2019-02-04 23:15:55 +08:00
|
|
|
|
2019-10-21 08:02:10 +08:00
|
|
|
with open('README.md', 'r') as fh:
|
2019-02-04 23:15:55 +08:00
|
|
|
long_description = fh.read()
|
|
|
|
|
2020-08-18 07:08:07 +08:00
|
|
|
setup(
|
2019-02-04 23:15:55 +08:00
|
|
|
name='theHarvester',
|
2019-04-19 23:18:49 +08:00
|
|
|
version=Core.version(),
|
2019-02-04 23:15:55 +08:00
|
|
|
author="Christian Martorella",
|
|
|
|
author_email="cmartorella@edge-security.com",
|
|
|
|
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",
|
2020-08-18 07:08:07 +08:00
|
|
|
packages=find_packages(exclude=['tests']),
|
|
|
|
python_requires='>=3.7',
|
2021-06-28 08:02:36 +08:00
|
|
|
scripts=['bin/theHarvester',
|
|
|
|
'bin/restfulHarvest'],
|
2019-03-24 16:07:45 +08:00
|
|
|
|
2019-02-04 23:15:55 +08:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2019-04-19 23:18:49 +08:00
|
|
|
"Programming Language :: Python :: 3.7",
|
2019-09-01 08:27:13 +08:00
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-12-17 04:15:15 +08:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2019-02-04 23:15:55 +08:00
|
|
|
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2019-03-23 00:43:44 +08:00
|
|
|
data_files=[
|
2019-10-20 05:11:07 +08:00
|
|
|
('/etc/theHarvester', [
|
2019-03-24 09:52:34 +08:00
|
|
|
'wordlists/general/common.txt',
|
|
|
|
'wordlists/dns-big.txt',
|
|
|
|
'wordlists/dns-names.txt',
|
|
|
|
'wordlists/dorks.txt',
|
2019-10-20 05:11:07 +08:00
|
|
|
'wordlists/names_small.txt',
|
2020-02-12 00:24:38 +08:00
|
|
|
'api-keys.yaml',
|
|
|
|
'proxies.yaml'
|
2019-03-23 00:43:44 +08:00
|
|
|
]
|
2019-09-01 08:27:13 +08:00
|
|
|
)
|
2019-03-24 09:31:24 +08:00
|
|
|
],
|
2019-03-23 00:43:44 +08:00
|
|
|
)
|