diff --git a/README.md b/README.md index 5f96cff..bdb302a 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# Django-Model-to-TypeScript- \ No newline at end of file +# Django-Model-to-TypeScript \ No newline at end of file diff --git a/setup.py b/setup.py index 03f117b..3d8b2ee 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup, find_packages +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setup( name='dajngo-models-typescript-types', version='0.1.1', @@ -8,6 +11,11 @@ install_requires=[ 'django', ], + description='A package to create your Typescript types/models from your Django models.', + long_description=long_description, + long_description_content_type="text/markdown", + author='Horou and Enzo_frnt', + url='https://github.com/Horou/djangorestframework-deepserializer', classifiers=[ 'Framework :: Django', 'Programming Language :: Python :: 3',