From e595931a1e5b8a10992e3ee0eae951572fe8519d Mon Sep 17 00:00:00 2001 From: Bipin Date: Mon, 28 Aug 2023 21:05:08 +0530 Subject: [PATCH] Long Desc --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 85ec2bc..01fe633 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup +with open('README.md', 'r', encoding='utf-8') as f: + long_description = f.read() + setup( name='DeGourou', version='1.3.8', @@ -7,6 +10,8 @@ setup( url='https://gitea.com/bipinkrish/DeGourou', author='Bipin krishna', license='GPL3', + long_description=long_description, + long_description_content_type='text/markdown', packages=['DeGourou',"DeGourou/setup","DeGourou/decrypt"], install_requires=['pycryptodomex>=3.17', 'cryptography>=41.0.1',