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
|
- shapely
|
||||||
- six
|
- six
|
||||||
- pip
|
- pip
|
||||||
- jupyter_contrib_nbextensions
|
|
||||||
|
|
||||||
|
|
5
setup.py
5
setup.py
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue