-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·21 lines (19 loc) · 954 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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='[email protected]',
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']
)