Add long_description_content_type
This commit is contained in:
parent
81919ce0f7
commit
502a7c26a7
1 changed files with 8 additions and 2 deletions
10
setup.py
10
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'],
|
||||
|
|
Loading…
Reference in a new issue