python-awips/setup.py

34 lines
1 KiB
Python
Raw Normal View History

# 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
2015-06-12 11:57:06 -06:00
from distutils.core import setup
2015-06-18 10:45:58 -06:00
from setuptools import find_packages
2015-06-12 11:57:06 -06:00
dependencies = ['numpy','six']
if sys.version_info < (3, 4):
dependencies.append('enum34')
2018-02-11 15:33:51 -07:00
ver="0.9.11"
2015-06-12 11:57:06 -06:00
setup(
2016-03-11 15:05:01 -07:00
name='python-awips',
version=ver,
2016-03-11 15:05:01 -07:00
description='A framework for requesting AWIPS meteorological datasets from an EDEX server',
2015-06-18 10:45:58 -06:00
packages=find_packages(exclude='data'),
license='BSD',
2017-02-01 21:09:01 -07:00
url='http://python-awips.readthedocs.io',
2018-02-11 15:33:51 -07:00
download_url='https://github.com/Unidata/python-awips/archive/v{}.tar.gz'.format(ver),
2016-03-11 18:41:42 -07:00
author='Unidata',
author_email='mjames@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']
}
2015-06-12 11:57:06 -06:00
)
2016-03-11 15:05:01 -07:00