2019-02-04 23:15:55 +08:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name='theHarvester',
|
|
|
|
version='3.0.6',
|
|
|
|
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",
|
|
|
|
packages=setuptools.find_packages(),
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2019-03-23 00:43:44 +08:00
|
|
|
data_files=[
|
|
|
|
('wordlists', [
|
2019-03-24 01:10:33 +08:00
|
|
|
'wordlists/general/common.txt',
|
|
|
|
'wordlists/dns-big.txt',
|
|
|
|
'wordlists/dns-names.txt',
|
|
|
|
'wordlists/dorks.txt',
|
|
|
|
'wordlists/names_small.txt'
|
2019-03-23 00:43:44 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
]
|
2019-03-24 09:05:36 +08:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'theHarwester = theHarvester.theHarvester:start'
|
|
|
|
]
|
|
|
|
},
|
2019-03-23 00:43:44 +08:00
|
|
|
)
|