Skip to content

Commit 427a807

Browse files
committed
Set description parsing to markdown
1 parent b4a66e0 commit 427a807

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mailjet_rest/utils/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 3, 0)
1+
VERSION = (1, 3, 3)
22

33

44
def get_version(version=None):
@@ -10,4 +10,4 @@ def get_version(version=None):
1010
version = VERSION
1111
else:
1212
assert len(version) == 3
13-
return '{0}.{1}.{2}'.format(*(x for x in version))
13+
return 'v{0}.{1}.{2}'.format(*(x for x in version))

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
url='https://github.com/mailjet/mailjet-apiv3-python',
2525
description=('Mailjet V3 API wrapper'),
2626
long_description=long_description,
27+
long_description_content_type="text/markdown",
2728
classifiers=['Development Status :: 4 - Beta',
2829
'Environment :: Console',
2930
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)