-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = '0.0.1' | ||
DESCRIPTION = 'A google dorking library and cli.' | ||
LONG_DESCRIPTION = 'Use google dorking directly in python and from your terminal.' | ||
|
||
# Setting up | ||
setup( | ||
name="ventus", | ||
version=VERSION, | ||
author="aaronlyy (Aaron Levi)", | ||
author_email="<[email protected]>", | ||
description=DESCRIPTION, | ||
long_description_content_type="text/markdown", | ||
long_description=LONG_DESCRIPTION, | ||
packages=find_packages(), | ||
install_requires=['requests', 'bs4', 'beautifulsoup4', 'click'], | ||
keywords=['dorking', 'google', 'scraping', 'google dorking', 'hacking', 'cracking'], | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .ventus import Ventus, Filter, Engine, Query |