python-awips/setup.py

16 lines
536 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',
version='0.9.1',
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-03-11 15:05:01 -07:00
license='Apache 2.0 / Various + US Export Controlled Technical Data',
url='http://www.unidata.ucar.edu/software/awips2',
2016-03-11 15:15:20 -07:00
download_url='https://github.com/Unidata/python-awips/tarball/0.9.1',
2016-03-11 15:34:40 -07:00
author='Unidata'
#requires=['argparse','shapely','numpy']
2015-06-12 11:57:06 -06:00
)
2016-03-11 15:05:01 -07:00