https://github.com/jobovy/gaia_tools
Revision e9a60f95d6cc467a3d1ec849a5f82b44d2c061af authored by Henry Leung on 17 June 2022, 19:31:22 UTC, committed by GitHub on 17 June 2022, 19:31:22 UTC
1 parent c151a1d
Raw File
Tip revision: e9a60f95d6cc467a3d1ec849a5f82b44d2c061af authored by Henry Leung on 17 June 2022, 19:31:22 UTC
Add functions to load Gaia DR3 RVS and XP sampled spectra (#33)
Tip revision: e9a60f9
setup.py
from setuptools import setup #, Extension

long_description = "Tools for working with the @ESAGaia data and related data sets; see `here <https://github.com/jobovy/gaia_tools>`__ for further documentation"

setup(name='gaia_tools',
      version='0.2',
      description='Gaia data tools',
      author='Jo Bovy',
      author_email='bovy@astro.utoronto.ca',
      license='MIT',
      long_description=long_description,
      url='https://github.com/jobovy/gaia_tools',
      package_dir = {'gaia_tools/': ''},
      packages=['gaia_tools','gaia_tools/load','gaia_tools/query',
                'gaia_tools/xmatch','gaia_tools/select','gaia_tools/util'],
      package_data={'gaia_tools/select': ['2massc_hp5.txt'],
                    "gaia_tools/query": ["defaults/gaia_defaults.json"],
                    "": ["README.rst","LICENSE"]},
      install_requires=['numpy','astropy','astroquery','tqdm',
                        'python-dateutil']
      )
back to top