from setuptools import setup, find_packages setup(name='pyvcm', version='0.1.2012.11.19', description='pyvcm - python wrapper for VIIRS cloud mask', author="Nick Bearson", author_email="nickb@ssec.wisc.edu", packages=find_packages('.'), install_requires=['numpy', 'scipy', 'matplotlib', 'pyhdf', 'h5py',], entry_points={'console_scripts':[ 'vcm_gatherer = pyvcm.vcm_gatherer:main', 'vcm = pyvcm.vcm:main', 'vcm_downloader = pyvcm.vcm_downloader:main', 'vcm_break_bytes = pyvcm.vcm_break_bytes:main', 'vcm_plotter = pyvcm.vcm_plotter:main' ]} )