Skip to content

Commit 290ead5

Browse files
author
Kal Walkden
committed
Update meta version so that documentation looks good in pypi
1 parent de42131 commit 290ead5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
import materializecssform
77

8+
with open("README.md", "r") as fh:
9+
long_description = fh.read()
10+
811
setup(
912

1013
name='django-materializecss-form',
@@ -18,7 +21,7 @@
1821
author_email="[email protected]",
1922

2023
description="A simple Django form template tag to work with Materializecss",
21-
long_description=open('README.md').read(),
24+
long_description=long_description,
2225
long_description_content_type="text/markdown",
2326

2427
include_package_data=True,
@@ -33,7 +36,6 @@
3336
"Natural Language :: English",
3437
"Operating System :: OS Independent",
3538
"Programming Language :: Python :: 3.6",
36-
"Topic :: Documentation :: Sphinx",
3739
],
3840

3941
license="MIT",

0 commit comments

Comments
 (0)