Skip to content

Commit 4e9ad8f

Browse files
committed
Fix for auto push
1 parent 078279f commit 4e9ad8f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Django-Model-to-TypeScript-
1+
# Django-Model-to-TypeScript

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='dajngo-models-typescript-types',
58
version='0.1.1',
@@ -8,6 +11,11 @@
811
install_requires=[
912
'django',
1013
],
14+
description='A package to create your Typescript types/models from your Django models.',
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
17+
author='Horou and Enzo_frnt',
18+
url='https://github.com/Horou/djangorestframework-deepserializer',
1119
classifiers=[
1220
'Framework :: Django',
1321
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)