https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision a8d50999a41a442afe99d5be633ceda9768f89cf authored by Bryna Hazelton on 08 February 2017, 18:06:29 UTC, committed by Bryna Hazelton on 08 February 2017, 18:06:29 UTC
1 parent 73a1eec
Raw File
Tip revision: a8d50999a41a442afe99d5be633ceda9768f89cf authored by Bryna Hazelton on 08 February 2017, 18:06:29 UTC
tweak to distutils_debug variable for appveyor
Tip revision: a8d5099
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