python-awips/setup.py

17 lines
522 B
Python
Raw Normal View History

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',
2017-04-04 20:35:47 -06:00
version='0.9.9',
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',
2017-02-01 21:09:01 -07:00
url='http://python-awips.readthedocs.io',
2017-04-04 20:35:47 -06:00
download_url='https://github.com/Unidata/python-awips/tarball/0.9.9',
2016-03-11 18:41:42 -07:00
author='Unidata',
author_email='mjames@ucar.edu',
requires=['argparse','shapely','numpy','six']
2015-06-12 11:57:06 -06:00
)
2016-03-11 15:05:01 -07:00