https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 2562e91fea2bb44decfbde700343b0aac63cd7c9 authored by Bryna Hazelton on 07 November 2017, 18:47:13 UTC, committed by Adam Beardsley on 07 November 2017, 23:01:04 UTC
1 parent aba9af2
Raw File
Tip revision: 2562e91fea2bb44decfbde700343b0aac63cd7c9 authored by Bryna Hazelton on 07 November 2017, 18:47:13 UTC
Address review comments
Tip revision: 2562e91
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