forked from megadose/holehe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
19 lines (17 loc) · 744 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='holehe',
version="1.56.3.3.2",
packages=find_packages(),
author="megadose",
install_requires=["requests","termcolor","tqdm", "mechanize","lxml","bs4"],
description="holehe allows you to check if the mail is used on different sites like twitter, instagram , snapchat and will retrieve information on sites with the forgotten password function.",
include_package_data=True,
url='https://github.com/megadose/holehe',
entry_points = {'console_scripts': ['holehe = holehe.core:main']},
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)