python-awips/setup.py

17 lines
564 B
Python
Raw Permalink 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',
download_url='https://github.com/Unidata/python-awips',
author_email='mjames@ucar.edu',
author='Michael James',
requires=['argparse','shapely','numpy']
2015-06-12 11:57:06 -06:00
)
2016-03-11 15:05:01 -07:00