Skip to content

Commit b80ed0f

Browse files
committed
added long description for setup.py
1 parent 258d5a1 commit b80ed0f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
from setuptools import setup, find_packages
2+
from pathlib import Path
3+
this_directory = Path(__file__).parent
4+
long_description = (this_directory / "README.md").read_text()
25
setup(
36
name="gdcli",
4-
version="1.0.6",
7+
version="1.0.7",
58
author="Subrahmanya s hegade",
69
author_email="hegadedevelopment@gmail.com",
710
description='''
811
Command line too used for simple google dorks
912
''',
10-
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
1115
packages=find_packages(include=['gdcli', 'gdcli.*']),
1216
entry_points='''
1317
[console_scripts]

0 commit comments

Comments
 (0)