Merge pull request #186 from diamorafaela/pip_installable

Added setup.py
This commit is contained in:
Christian Martorella 2019-03-18 22:35:39 +01:00 committed by GitHub
commit 37b0895690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

0
__init__.py Normal file
View file

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
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",
],
)