shapely dependency

This commit is contained in:
Michael James 2018-10-11 14:33:38 -06:00
parent 211d9479f9
commit c6033be7b1
2 changed files with 2 additions and 2 deletions

View file

@ -296,7 +296,7 @@ texinfo_documents = [
# Set up mapping for other projects' docs # Set up mapping for other projects' docs
intersphinx_mapping = { intersphinx_mapping = {
'matplotlib': ('http://matplotlib.org/', None), '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), 'numpy': ('http://docs.scipy.org/doc/numpy/', None),
'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None), 'scipy': ('http://docs.scipy.org/doc/scipy/reference/', None),
'pint': ('http://pint.readthedocs.org/en/stable/', None), 'pint': ('http://pint.readthedocs.org/en/stable/', None),

View file

@ -6,7 +6,7 @@ import sys
from distutils.core import setup from distutils.core import setup
from setuptools import find_packages from setuptools import find_packages
dependencies = ['numpy','six'] dependencies = ['numpy','six','shapely']
if sys.version_info < (3, 4): if sys.version_info < (3, 4):
dependencies.append('enum34') dependencies.append('enum34')