We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258d5a1 commit b80ed0fCopy full SHA for b80ed0f
1 file changed
setup.py
@@ -1,13 +1,17 @@
1
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()
5
setup(
6
name="gdcli",
- version="1.0.6",
7
+ version="1.0.7",
8
author="Subrahmanya s hegade",
9
author_email="hegadedevelopment@gmail.com",
10
description='''
11
Command line too used for simple google dorks
12
''',
-
13
+ long_description=long_description,
14
+ long_description_content_type='text/markdown',
15
packages=find_packages(include=['gdcli', 'gdcli.*']),
16
entry_points='''
17
[console_scripts]
0 commit comments