Skip to content

Commit

Permalink
added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronlyy committed Apr 18, 2022
1 parent 873c533 commit d8a6035
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
Binary file modified requirements.txt
Binary file not shown.
27 changes: 27 additions & 0 deletions setup.py
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",
]
)
1 change: 1 addition & 0 deletions ventus/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .ventus import Ventus, Filter, Engine, Query

0 comments on commit d8a6035

Please sign in to comment.