https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision b32779504a0d63ada9a07227b58634593c6ee2ad authored by Zaki Ali on 28 April 2017, 00:38:53 UTC, committed by Bryna Hazelton on 29 April 2017, 03:04:44 UTC
axis extension for flag_array when no input_flag_array given.

updated data files for tests.
1 parent f464ef2
Raw File
Tip revision: b32779504a0d63ada9a07227b58634593c6ee2ad authored by Zaki Ali on 28 April 2017, 00:38:53 UTC
bug fix in writing calfits.
Tip revision: b327795
setup.py
from setuptools import setup
import glob
import os.path as op
from os import listdir
from pyuvdata import version
import json

data = [version.git_origin, version.git_hash, version.git_description, version.git_branch]
with open(op.join('pyuvdata', 'GIT_INFO'), 'w') as outfile:
    json.dump(data, outfile)

setup_args = {
    'name': 'pyuvdata',
    'author': 'HERA Team',
    'url': 'https://github.com/HERA-Team/pyuvdata',
    'license': 'BSD',
    'description': 'an interface for astronomical interferometeric datasets in python',
    'package_dir': {'pyuvdata': 'pyuvdata', 'uvdata': 'uvdata'},
    'packages': ['pyuvdata', 'uvdata'],
    'scripts': glob.glob('scripts/*'),
    'version': version.version,
    'include_package_data': True,
    'install_requires': ['numpy>=1.10', 'scipy', 'astropy>=1.2', 'pyephem', 'aipy'],
    'classifiers': ['Development Status :: 5 - Production/Stable',
                    'Intended Audience :: Science/Research',
                    'License :: OSI Approved :: BSD License',
                    'Programming Language :: Python :: 2.7',
                    'Topic :: Scientific/Engineering :: Astronomy'],
    'keywords': 'radio astronomy interferometry'
}

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