https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 4e0ed47fc7eba0f01312e71806ed4d8d3429f54f authored by Paul La Plante on 12 July 2017, 17:11:31 UTC, committed by Adam Beardsley on 17 July 2017, 14:43:20 UTC
1 parent 46974a0
Raw File
Tip revision: 4e0ed47fc7eba0f01312e71806ed4d8d3429f54f authored by Paul La Plante on 12 July 2017, 17:11:31 UTC
Add first test and fix add method accordingly
Tip revision: 4e0ed47
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'],
    '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