Updated the environment.yml and setup.py files

- remove jupyter_contrib_nbextensions package from environment.yml as this is no longer supported
- update the version in the setup.py file so when installing locally it has v20 associated with it
- remove download link from the setup.py file since it's not correct for the beta
This commit is contained in:
Shay Carter 2023-09-18 14:27:01 -06:00
parent d1ad6d1879
commit 02d8198a99
2 changed files with 2 additions and 4 deletions

View file

@ -23,5 +23,4 @@
- shapely - shapely
- six - six
- pip - pip
- jupyter_contrib_nbextensions

View file

@ -6,11 +6,11 @@ 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']
if sys.version_info < (3, 4): if sys.version_info < (3, 4):
dependencies.append('enum34') dependencies.append('enum34')
ver = "18.1.11" ver = "20"
setup( setup(
name='python-awips', name='python-awips',
@ -19,7 +19,6 @@ setup(
packages=find_packages(exclude='data'), packages=find_packages(exclude='data'),
license='BSD', license='BSD',
url='http://unidata.github.io/python-awips', url='http://unidata.github.io/python-awips',
download_url='https://github.com/Unidata/python-awips/archive/{}.tar.gz'.format(ver),
author='Unidata', author='Unidata',
author_email='support-awips@ucar.edu', author_email='support-awips@ucar.edu',
install_requires=dependencies, install_requires=dependencies,