forked from darryllane/Bluto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 852 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='Bluto',
version='2.4.17',
author='Darryl lane',
author_email='[email protected]',
url='https://github.com/darryllane/Bluto',
packages=['Bluto'],
include_package_data=True,
license='LICENSE.txt',
description='''
DNS Recon | Brute Forcer | DNS Zone Transfer | DNS Wild Card Checks
DNS Wild Card Brute Forcer | Email Enumeration | Staff Enumeration
Compromised Account Checking''',
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
scripts=['Bluto/bluto'],
install_requires=[
"docopt",
"dnspython",
"termcolor",
"BeautifulSoup4",
"requests[security]",
"pythonwhois",
"lxml",
"oletools",
"pdfminer==20140328"
],
)