https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 60793ce98f54948f259fa4c5e3b9107cc74445ce authored by Bryna Hazelton on 08 February 2017, 18:28:25 UTC, committed by Bryna Hazelton on 08 February 2017, 18:28:25 UTC
1 parent a8d5099
Raw File
Tip revision: 60793ce98f54948f259fa4c5e3b9107cc74445ce authored by Bryna Hazelton on 08 February 2017, 18:28:25 UTC
attempt to switch to 32bit to avoid python 2.7 compilation error
Tip revision: 60793ce
setup.py
from setuptools import setup
import glob
import os.path as op
from os import listdir

__version__ = '1.0'

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))]},
    'install_requires': ['numpy>=1.10', 'scipy', 'astropy>=1.2', 'pyephem', 'aipy']
}

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