Skip to content
Snippets Groups Projects
setup.py 1.15 KiB
#!/usr/bin/env python
"""
$Id$
see http://peak.telecommunity.com/DevCenter/setuptools

note: if you want to develop this code and run from code on the command line,
please run the following line when you update to a new version of the code.
python setup.py develop --install-dir=$HOME/Library/Python

distribution:
python setup.py develop --install-dir=$HOME/Library/Python
python setup.py sdist
python setup.py bdist_egg

#(cd dist; rsync -Cuav * larch.ssec.wisc.edu:/var/apache/larch/htdocs/eggs/repos/uwglance)

use: 
python setup.py install --install-dir=$HOME/Library/Python
#easy_install -d $HOME/Library/Python -vi http://larch.ssec.wisc.edu/eggs/repos uwglance
"""

# changed to support egg distribution
from setuptools import setup, find_packages

setup( name="spacetimegrid", 
       version="0.4",
       zip_safe = True,
       entry_points = { 'console_scripts': [ 'stg = stg.space_time_gridding:main', 'stg_plot = stg.plot_tools:main' ] },
       packages = ['stg'], #find_packages('.'),
       install_requires=[ 'numpy>=1.8.0', 'scipy', 'python-hdf4', 'netCDF4', 'matplotlib', ], # 'mpl_toolkits', ],
       #package_data = {'': ['*.txt', '*.gif']}
       )