diff --git a/environment.yml b/environment.yml index 4d6ca9a..a9d239b 100644 --- a/environment.yml +++ b/environment.yml @@ -23,5 +23,4 @@ - shapely - six - pip - - jupyter_contrib_nbextensions diff --git a/setup.py b/setup.py index c96ea66..6c1b840 100644 --- a/setup.py +++ b/setup.py @@ -6,11 +6,11 @@ import sys from distutils.core import setup from setuptools import find_packages -dependencies = ['numpy', 'six'] +dependencies = ['numpy'] if sys.version_info < (3, 4): dependencies.append('enum34') -ver = "18.1.11" +ver = "20" setup( name='python-awips', @@ -19,7 +19,6 @@ setup( packages=find_packages(exclude='data'), license='BSD', url='http://unidata.github.io/python-awips', - download_url='https://github.com/Unidata/python-awips/archive/{}.tar.gz'.format(ver), author='Unidata', author_email='support-awips@ucar.edu', install_requires=dependencies,