2018-09-05 15:52:38 -06:00
|
|
|
# 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
|
|
|
|
|
2023-09-18 14:27:01 -06:00
|
|
|
dependencies = ['numpy']
|
2018-09-05 15:52:38 -06:00
|
|
|
if sys.version_info < (3, 4):
|
|
|
|
dependencies.append('enum34')
|
|
|
|
|
2024-04-02 12:23:16 -06:00
|
|
|
ver = "23.01"
|
2018-09-05 15:52:38 -06:00
|
|
|
|
|
|
|
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',
|
2022-01-05 13:22:52 -07:00
|
|
|
url='http://unidata.github.io/python-awips',
|
2023-12-12 11:45:16 -07:00
|
|
|
author='NSF Unidata',
|
2022-01-05 13:22:52 -07:00
|
|
|
author_email='support-awips@ucar.edu',
|
2018-09-05 15:52:38 -06:00
|
|
|
install_requires=dependencies,
|
|
|
|
extras_require={
|
|
|
|
'cdm': ['pyproj>=1.9.4'],
|
|
|
|
'dev': ['ipython[all]>=3.1'],
|
|
|
|
'doc': ['sphinx>=1.4', 'sphinx-gallery', 'doc8'],
|
2018-10-16 21:33:43 -06:00
|
|
|
'examples': ['cartopy>=0.13.1', 'metpy>=0.4.0']
|
2018-09-05 15:52:38 -06:00
|
|
|
}
|
|
|
|
)
|