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
|
|
|
|
|
|
|
setup(
|
2016-03-11 15:05:01 -07:00
|
|
|
name='python-awips',
|
2016-10-04 13:03:04 -06:00
|
|
|
version='0.9.5',
|
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'),
|
2016-10-04 13:03:04 -06:00
|
|
|
license='Open Source',
|
2016-03-11 15:05:01 -07:00
|
|
|
url='http://www.unidata.ucar.edu/software/awips2',
|
2016-10-04 13:03:04 -06:00
|
|
|
download_url='https://github.com/Unidata/python-awips/tarball/0.9.5',
|
2016-03-11 18:41:42 -07:00
|
|
|
author='Unidata',
|
|
|
|
author_email='mjames@ucar.edu',
|
2016-04-17 19:38:33 -06:00
|
|
|
requires=['argparse','shapely','numpy','six']
|
2015-06-12 11:57:06 -06:00
|
|
|
)
|
2016-03-11 15:05:01 -07:00
|
|
|
|