https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 2969ca7ec4e6e4489992e496e139035ceb319bdb authored by Nicholas Kern on 27 October 2017, 18:44:34 UTC, committed by Bryna Hazelton on 29 October 2017, 02:20:35 UTC
1 parent 86ce8de
Raw File
Tip revision: 2969ca7ec4e6e4489992e496e139035ceb319bdb authored by Nicholas Kern on 27 October 2017, 18:44:34 UTC
added example ECEF-TOPO conversion to docstring of `UVData.antenna_positions`
Tip revision: 2969ca7
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'},
    'packages': ['pyuvdata', 'pyuvdata.tests'],
    'scripts': glob.glob('scripts/*'),
    'version': version.version,
    'include_package_data': True,
    'install_requires': ['numpy>=1.10', 'scipy', 'astropy>=1.2', 'pyephem', 'aipy>=2.1.6'],
    '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