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',