Skip to content

Commit 62ced5f

Browse files
committed
Add proper python structured setup.py
1 parent 9769fad commit 62ced5f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
HERE = os.path.abspath(os.path.dirname(__file__))
88
PACKAGE_NAME = 'mailjet_rest'
99

10+
with open("README.md", "r") as fh:
11+
long_description = fh.read()
12+
1013
# Dynamically calculate the version based on mailjet_rest.VERSION.
1114
version = __import__('mailjet_rest').get_version()
1215

@@ -20,7 +23,8 @@
2023
download_url='https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v' + version,
2124
url='https://github.com/mailjet/mailjet-apiv3-python',
2225
description=('Mailjet V3 API wrapper'),
23-
classifiers=['Development Status :: 3 - Alpha',
26+
long_description=long_description,
27+
classifiers=['Development Status :: 3',
2428
'Environment :: Console',
2529
'Intended Audience :: Developers',
2630
'License :: OSI Approved :: GNU General Public License (GPL)',

0 commit comments

Comments
 (0)