Long Desc

This commit is contained in:
Bipin 2023-08-28 21:05:08 +05:30
parent b76c31c56b
commit e595931a1e

View file

@ -1,5 +1,8 @@
from setuptools import setup from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup( setup(
name='DeGourou', name='DeGourou',
version='1.3.8', version='1.3.8',
@ -7,6 +10,8 @@ setup(
url='https://gitea.com/bipinkrish/DeGourou', url='https://gitea.com/bipinkrish/DeGourou',
author='Bipin krishna', author='Bipin krishna',
license='GPL3', license='GPL3',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['DeGourou',"DeGourou/setup","DeGourou/decrypt"], packages=['DeGourou',"DeGourou/setup","DeGourou/decrypt"],
install_requires=['pycryptodomex>=3.17', install_requires=['pycryptodomex>=3.17',
'cryptography>=41.0.1', 'cryptography>=41.0.1',