Skip to content

Commit

Permalink
added long description for setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
HEGADE committed Oct 17, 2021
1 parent 258d5a1 commit b80ed0f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="gdcli",
version="1.0.6",
version="1.0.7",
author="Subrahmanya s hegade",
author_email="[email protected]",
description='''
Command line too used for simple google dorks
''',

long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(include=['gdcli', 'gdcli.*']),
entry_points='''
[console_scripts]
Expand Down

0 comments on commit b80ed0f

Please sign in to comment.