-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
20 lines (18 loc) · 777 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='holehe',
version="1.61",
packages=find_packages(),
author="megadose",
author_email="megadose@protonmail.com",
install_requires=["termcolor","bs4","httpx","trio","tqdm","colorama"],
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='http://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)",
],
)