-
-
- Iris {{version}}
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Iris v2.1
+
+
+ a powerful, easy to use, community-driven Python library for analysing and
+ visualising Earth science data
+
+
+
{{ super() }}
{% endblock %}
diff --git a/setup.py b/setup.py
index 347edef3b7..470a7cfbad 100644
--- a/setup.py
+++ b/setup.py
@@ -230,6 +230,8 @@ def extract_version():
pypi_name = 'scitools-iris'
+with open(os.path.join(SETUP_DIR, 'README.md'), 'r') as fh:
+ description = ''.join(fh.readlines())
setup(
name=pypi_name,
@@ -237,6 +239,10 @@ def extract_version():
url='http://scitools.org.uk/iris/',
author='UK Met Office',
author_email='scitools-iris-dev@googlegroups.com',
+ description="A powerful, easy to use, and community-driven Python "
+ "library for analysing and visualising Earth science data",
+ long_description=description,
+ long_description_content_type='text/markdown',
packages=find_package_tree('lib/iris', 'iris'),
package_dir={'': 'lib'},
include_package_data=True,