mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
16 lines
572 B
Python
16 lines
572 B
Python
from distutils.core import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(
|
|
name='python-awips',
|
|
version='0.9.8',
|
|
description='A framework for requesting AWIPS meteorological datasets from an EDEX server',
|
|
packages=find_packages(exclude='data'),
|
|
license='Apache 2.0 / Various + US Export Controlled Technical Data',
|
|
url='http://www.unidata.ucar.edu/software/awips2',
|
|
download_url='https://github.com/Unidata/python-awips/tarball/0.9.8',
|
|
author='Unidata',
|
|
author_email='mjames@ucar.edu',
|
|
requires=['argparse','shapely','numpy']
|
|
)
|
|
|