mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 14:57:56 -05:00
16 lines
524 B
Python
16 lines
524 B
Python
from distutils.core import setup
|
|
from setuptools import find_packages
|
|
|
|
setup(
|
|
name='python-awips',
|
|
version='0.9.10',
|
|
description='A framework for requesting AWIPS meteorological datasets from an EDEX server',
|
|
packages=find_packages(exclude='data'),
|
|
license='Open Source',
|
|
url='http://python-awips.readthedocs.io',
|
|
download_url='https://github.com/Unidata/python-awips/tarball/0.9.10',
|
|
author='Unidata',
|
|
author_email='mjames@ucar.edu',
|
|
requires=['argparse','shapely','numpy','six']
|
|
)
|
|
|