-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
97 lines (66 loc) · 1.86 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
from setuptools import setup, find_packages
from os import path
import emailfinder
long_description = """
**EmailFinder - Search emails through Search Engines**
======================================================
Installation:
-------------
> pip3 install emailfinder
Upgrades are also available using:
> pip3 install emailfinder --upgrade
Search Engines
--------------
- google: Ok (note cookies policy and Captcha!).
- bing: OK.
- baidu: OK (few requests).
- bing: Hunting Robots very fast.
Usage
-----
EmailFinder can be used in 2 ways:
CLI
---
emailfinder -d domain.com
Parameters:
- d: Specifies the target domain.
- v: Show EmailFinder version.
- p: HTTP proxy server URL.
In Code
-------
from emailfinder.extractor import *
emails1 = get_emails_from_google("domain.com")
emails2 = get_emails_from_bing("domain.com")
emails3 = get_emails_from_baidu("domain.com")
Author
======
This project has been developed by:
- **Josué Encinar García** -- https://twitter.com/JosueEncinar
Disclaimer!
===========
The software is designed to check a company's emails found in the search engines. The author is not responsible for any
illegitimate use.
"""
setup(
name='emailfinder',
version=emailfinder.__version__,
author='Josue Encinar (@JosueEncinar)',
description='EmailFinder - Emails search through Search Engines',
include_package_data=True,
license='GNU GPLv3+',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/Josue87/EmailFinder",
entry_points={
'console_scripts': [
'emailfinder=emailfinder.cli:main',
],
},
install_requires=[
"requests>=2.25.1",
"prompt-toolkit>=3.0.5",
"urllib3>=1.26.4",
"pyfiglet>=0.8.post1",
"beautifulsoup4>=4.9.3"
]
)