#!/usr/bin/env python # -*- coding: utf-8 -*- """ :author: R.K.Garcia <rayg@ssec.wisc.edu> :copyright: 2017 by University of Wisconsin Regents, see AUTHORS for more details :license: GPLv3, see LICENSE for more details """ __author__ = 'rayg' __docformat__ = 'reStructuredText' from setuptools import setup, find_packages setup( name="goesr", version="0.2", packages=find_packages(), # scripts=['say_hello.py'], # Project uses reStructuredText, so ensure that the docutils get # installed or upgraded on the target machine install_requires=['netCDF4', 'numpy', 'pyproj'], # package_data={ # # If any package contains *.txt or *.rst files, include them: # '': ['*.txt', '*.rst'], # # And include any *.msg files found in the 'hello' package, too: # 'hello': ['*.msg'], # }, # metadata for upload to PyPI author="R.K.Garcia", author_email="rkgarcia@wisc.edu", description="", license="GPL", keywords="utility package for GOES-R data and Product User's Guide (PUG) data formats", url="https://gitlab.ssec.wisc.edu/rayg/goesr", # project home page, if any # could also include long_description, download_url, classifiers, etc. )