Skip to content
Snippets Groups Projects
setup.py 416 B

from setuptools import setup, find_packages

setup(name='demlw',
      version='1.0.1',
      description='Package for creating DEM Land/Water fields',
      author='Nick Bearson',
      author_email='nickb@ssec.wisc.edu',
      packages=find_packages('.'),
      install_requires=['pyhdf',
                        'numpy',
								'scipy',],
		entry_points={'console_scripts': ['ifflw=demlw.ifflw:main'],}
      )