https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 14e650a77b7c2ab4fce8e33a36c9fae8b55599bf authored by Bryna Hazelton on 29 November 2016, 21:20:49 UTC, committed by Bryna Hazelton on 29 November 2016, 21:20:49 UTC
1 parent d19156d
Raw File
Tip revision: 14e650a77b7c2ab4fce8e33a36c9fae8b55599bf authored by Bryna Hazelton on 29 November 2016, 21:20:49 UTC
add comment to clarify aipy manipulations of miriad values
Tip revision: 14e650a
setup.py
from setuptools import setup
import glob
import os.path as op
from os import listdir

__version__ = '0.0.1'

setup_args = {
    'name': 'uvdata',
    'author': 'HERA Team',
    'license': 'BSD',
    'package_dir': {'uvdata': 'uvdata'},
    'packages': ['uvdata'],
    'scripts': glob.glob('scripts/*'),
    'version': __version__,
    'package_data': {'uvdata': [f for f in listdir('./uvdata/data') if op.isfile(op.join('./uvdata/data', f))]},
    # note pyfits is only a dependency because it is an aipy dependency.
    # It should be removed when aipy is.
    'install_requires': ['numpy>=1.10', 'scipy', 'astropy>=1.2', 'pyephem', 'pyfits', 'aipy']
}

if __name__ == '__main__':
    apply(setup, (), setup_args)
back to top