mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
Merge pull request #113 from srcarter3/v20
Updated the environment.yml and setup.py files
This commit is contained in:
commit
31892711eb
2 changed files with 2 additions and 4 deletions
|
@ -23,5 +23,4 @@
|
|||
- shapely
|
||||
- six
|
||||
- pip
|
||||
- jupyter_contrib_nbextensions
|
||||
|
||||
|
|
5
setup.py
5
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,
|
||||
|
|
Loading…
Add table
Reference in a new issue