Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
megadose
GitHub Repository: megadose/holehe
Path: blob/master/setup.py
404 views
1
# -*- coding: utf-8 -*-
2
from setuptools import setup, find_packages
3
4
5
setup(
6
name='holehe',
7
version="1.61",
8
packages=find_packages(),
9
author="megadose",
10
author_email="[email protected]",
11
install_requires=["termcolor","bs4","httpx","trio","tqdm","colorama"],
12
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.",
13
include_package_data=True,
14
url='http://github.com/megadose/holehe',
15
entry_points = {'console_scripts': ['holehe = holehe.core:main']},
16
classifiers=[
17
"Programming Language :: Python",
18
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
19
],
20
)
21
22