https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision e5b3d9ab596ea6d2c93788ec0b59d1d42f80e007 authored by aelanman on 21 February 2017, 20:15:03 UTC, committed by aelanman on 21 February 2017, 20:15:03 UTC
1 parent ab65bd4
Raw File
Tip revision: e5b3d9ab596ea6d2c93788ec0b59d1d42f80e007 authored by aelanman on 21 February 2017, 20:15:03 UTC
Removing telescope_layouts directory
Tip revision: e5b3d9a
setup.py
from setuptools import setup
import glob
import os.path as op
from os import listdir

__version__ = '1.0'

setup_args = {
    'name': 'pyuvdata',
    'author': 'HERA Team',
    'license': 'BSD',
    'package_dir': {'pyuvdata': 'pyuvdata', 'uvdata': 'uvdata'},
    'packages': ['pyuvdata', 'uvdata'],
    'scripts': glob.glob('scripts/*'),
    'version': __version__,
    'package_data': {'pyuvdata': [f for f in listdir('./pyuvdata/data') if op.isfile(op.join('./pyuvdata/data', f))]},
    'install_requires': ['numpy>=1.10', 'scipy', 'astropy>=1.2', 'pyephem', 'aipy']
}

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