Skip to content

Commit 9eb8fc1

Browse files
committed
Fixes markdown support on pypi
According to https://stackoverflow.com/questions/26737222/pypi-description-markdown-doesnt-work this is needed for pypi to support markdown in the long description
1 parent e64caba commit 9eb8fc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ def readme():
77

88
setup(
99
name="lectocal",
10-
version="1.0.0",
10+
version="1.0.1",
1111
author="Philip 'Hanse00' Mallegol-Hansen",
1212
author_email="philip@mallegolhansen.com",
1313
url="https://github.com/Hanse00/LecToCal",
1414
description="Syncronize Lectio schedules to Google Calendar.",
1515
long_description=readme(),
16+
long_description_content_type='text/markdown',
1617
license="Apache 2.0",
1718
python_requires=">=3",
1819
classifiers=[

0 commit comments

Comments
 (0)