From 502a7c26a761a70aa756d340aefdc3978df7430b Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Sat, 2 Jun 2018 17:24:25 +0200 Subject: [PATCH] Add long_description_content_type --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f998b162..2c8e035b 100644 --- a/setup.py +++ b/setup.py @@ -23,20 +23,26 @@ setup( author=umap.__author__, author_email=umap.__contact__, description=umap.__doc__, - keywords="django leaflet geodjango openstreetmap", + keywords="django leaflet geodjango openstreetmap map", url=umap.__homepage__, packages=find_packages(), include_package_data=True, platforms=["any"], zip_safe=True, long_description=long_description, + long_description_content_type='text/markdown', install_requires=install_requires, classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], entry_points={ 'console_scripts': ['umap=umap.bin:main'],