From c6033be7b1e12cce53d13fbf5d2cfab02e88b7b9 Mon Sep 17 00:00:00 2001 From: Michael James Date: Thu, 11 Oct 2018 14:33:38 -0600 Subject: [PATCH] shapely dependency --- docs/source/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3b318f4..a685f96 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -296,7 +296,7 @@ texinfo_documents = [ # Set up mapping for other projects' docs intersphinx_mapping = { 'matplotlib': ('http://matplotlib.org/', None), - 'metpy': ('http://docs.scipy.org/doc/metpy/', None), + 'metpy': ('https://unidata.github.io/MetPy/', None), 'numpy': ('http://docs.scipy.org/doc/numpy/', None), 'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None), 'pint': ('http://pint.readthedocs.org/en/stable/', None), diff --git a/setup.py b/setup.py index d9541a7..62bb44a 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import sys from distutils.core import setup from setuptools import find_packages -dependencies = ['numpy','six'] +dependencies = ['numpy','six','shapely'] if sys.version_info < (3, 4): dependencies.append('enum34')