We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de42131 commit 290ead5Copy full SHA for 290ead5
setup.py
@@ -5,6 +5,9 @@
5
6
import materializecssform
7
8
+with open("README.md", "r") as fh:
9
+ long_description = fh.read()
10
+
11
setup(
12
13
name='django-materializecss-form',
@@ -18,7 +21,7 @@
18
21
author_email="[email protected]",
19
22
20
23
description="A simple Django form template tag to work with Materializecss",
- long_description=open('README.md').read(),
24
+ long_description=long_description,
25
long_description_content_type="text/markdown",
26
27
include_package_data=True,
@@ -33,7 +36,6 @@
33
36
"Natural Language :: English",
34
37
"Operating System :: OS Independent",
35
38
"Programming Language :: Python :: 3.6",
- "Topic :: Documentation :: Sphinx",
39
],
40
41
license="MIT",
0 commit comments