|
7 | 7 | HERE = os.path.abspath(os.path.dirname(__file__)) |
8 | 8 | PACKAGE_NAME = 'mailjet_rest' |
9 | 9 |
|
| 10 | +with open("README.md", "r") as fh: |
| 11 | + long_description = fh.read() |
| 12 | + |
10 | 13 | # Dynamically calculate the version based on mailjet_rest.VERSION. |
11 | 14 | version = __import__('mailjet_rest').get_version() |
12 | 15 |
|
|
20 | 23 | download_url='https://github.com/mailjet/mailjet-apiv3-python/releases/tag/v' + version, |
21 | 24 | url='https://github.com/mailjet/mailjet-apiv3-python', |
22 | 25 | description=('Mailjet V3 API wrapper'), |
23 | | - classifiers=['Development Status :: 3 - Alpha', |
| 26 | + long_description=long_description, |
| 27 | + long_description_content_type="text/markdown", |
| 28 | + classifiers=['Development Status :: 4 - Beta', |
24 | 29 | 'Environment :: Console', |
25 | 30 | 'Intended Audience :: Developers', |
26 | 31 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
27 | 32 | 'Natural Language :: English', |
28 | 33 | 'Operating System :: OS Independent', |
29 | | - 'Programming Language :: Python :: 2.6', |
30 | 34 | 'Programming Language :: Python :: 2.7', |
31 | 35 | 'Programming Language :: Python :: 3.5', |
32 | 36 | 'Programming Language :: Python :: 3.6', |
|
0 commit comments