python-awips/setup.py
Shay Carter 02d8198a99 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
2023-09-18 14:27:01 -06:00

31 lines
943 B
Python

# Copyright (c) 2017 UCAR Unidata Program Center.
# Distributed under the terms of the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
from __future__ import print_function
import sys
from distutils.core import setup
from setuptools import find_packages
dependencies = ['numpy']
if sys.version_info < (3, 4):
dependencies.append('enum34')
ver = "20"
setup(
name='python-awips',
version=ver,
description='A framework for requesting AWIPS meteorological datasets from an EDEX server',
packages=find_packages(exclude='data'),
license='BSD',
url='http://unidata.github.io/python-awips',
author='Unidata',
author_email='support-awips@ucar.edu',
install_requires=dependencies,
extras_require={
'cdm': ['pyproj>=1.9.4'],
'dev': ['ipython[all]>=3.1'],
'doc': ['sphinx>=1.4', 'sphinx-gallery', 'doc8'],
'examples': ['cartopy>=0.13.1', 'metpy>=0.4.0']
}
)