-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
72 lines (67 loc) · 2.43 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import io
def read(*filenames, **kwargs):
encoding = kwargs.get('encoding', 'utf-8')
sep = kwargs.get('sep', '\n')
buf = []
for filename in filenames:
with io.open(filename, encoding=encoding) as f:
buf.append(f.read())
return sep.join(buf)
long_description = read('README.md')
setup(
name='skiptracer',
version='3.0.0',
description='OSINT python webscaping framework',
long_description=long_description,
maintainer='xillwillx',
license='Apache 2.0',
url='https://github.com/xillwillx/skiptracer',
package_dir={'': 'src'},
include_package_data=True,
packages=find_packages('src'),
plugins=[],
hello=[],
entry_points={
'console_script': [
'skiptracer = skiptracer.__main__:main'
],
'skiptracer.plugins': [
'fouroneone_info = skiptracer.plugins.fouroneone:FourOneOneGrabber',
'haveibeenpwned = skiptracer.plugins.haveibeenpwned:HaveIBeenPwwnedGrabber',
'knowem = skiptracer.plugins.knowem:KnowemGrabber',
'linkedin = skiptracer.plugins.linkedin:LinkedInSalesGrabber',
'myspace = skiptracer.plugins.myspace:MySpaceGrabber',
'namechk2 = skiptracer.plugins.namechk2:NameChkGrabber',
'plate = skiptracer.plugins.plate:VinGrabber',
'tinder = skiptracer.plugins.tinder:TinderGrabber',
'true_people = skiptracer.plugins.true_people:TruePeopleGrabber',
'truthfinder = skiptracer.plugins.truthfinder:TruthFinderGrabber',
'twitter = skiptracer.plugins.twitter:TwitterGrabber',
'who_call_id = skiptracer.plugins.who_call_id:WhoCallIdGrabber',
'whoismind = skiptracer.plugins.whoismind:WhoisMindGrabber',
'advance_background_checks = skiptracer.plugins.advance_background_checks:AdvanceBackgroundGrabber'
],
'skiptracer.menus': [
'default_menus = skiptracer.menus.default_menus:DefaultMenus'
],
'skiptracer.colors': [
'default_colors = skiptracer.colors.default_colors:DefaultBodyColors'
]
},
install_requires=[
'bs4',
'lxml',
'requests',
'ipdb',
'pprint',
'click',
'cfscrape',
'numpy',
'simplejson',
'tqdm',
'selenium',
'python-dotenv'
]
)