diff --git a/README.md b/README.md
index ba01f6c..a538995 100644
--- a/README.md
+++ b/README.md
@@ -89,6 +89,12 @@ Just add map widgets to your django admin forms.
![](https://cloud.githubusercontent.com/assets/1518272/26807500/ad0af4ea-4a4e-11e7-87d6-632f39e438f7.gif)
+
+##### MapBox Map Point Field Widget
+
+![](https://user-images.githubusercontent.com/1518272/168497515-f97363f4-6860-410e-9e24-230a2c4233b7.png)
+
+
##### Google Map Static Overlay Widget
This widget is working with Magnific Popup jQuery plugin.
diff --git a/README.rst b/README.rst
index 44c98a7..2f38970 100644
--- a/README.rst
+++ b/README.rst
@@ -16,7 +16,7 @@ Django Map Widgets
Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
.. note::
- Check the `project home page `_ for latest updates.
+ Please check the `project home page `_ for latest updates.
* **Project Home Page** : `https://github.com/erdem/django-map-widgets `_.
* **Documentation**: `http://django-map-widgets.readthedocs.io `_.
diff --git a/setup.py b/setup.py
index da52713..4ced616 100644
--- a/setup.py
+++ b/setup.py
@@ -3,11 +3,18 @@
VERSION = (0, 4, 0)
__version__ = '.'.join(map(str, VERSION))
+
+LONG_DESCRIPTION = """
+Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.
+Please check the `project home page `_ for latest updates.
+"""
+
+
setup(
name='django-map-widgets',
version=__version__,
description='Map widgets for Django PostGIS fields',
- long_description='Configurable, pluggable and more user friendly map widgets for Django PostGIS fields.',
+ long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author='Erdem Ozkol',
author_email='erdemozkol@gmail.com',
@@ -25,4 +32,3 @@
'Programming Language :: Python',
],
)
-