forked from LSSTDESC/gcr-catalogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.47 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
"""
Catalog repo for LSST DESC
Copyright (c) 2017 LSST DESC
http://opensource.org/licenses/MIT
"""
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'GCRCatalogs', 'version.py')) as f:
exec(f.read()) # pylint: disable=W0122
setup(
name='GCRCatalogs',
version=__version__, # pylint: disable=E0602
description='Catalog repo for LSST DESC',
url='https://github.com/LSSTDESC/gcr-catalogs',
author='Yao-Yuan Mao',
author_email='[email protected]',
maintainer='Yao-Yuan Mao',
maintainer_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='GCR',
packages=['GCRCatalogs'],
install_requires=['future', 'requests', 'pyyaml', 'numpy', 'astropy', 'GCR>=0.8.7'],
extras_require={
'protodc2': ['h5py'],
'cosmodc2': ['h5py', 'healpy'],
'instance': ['pandas'],
'reference': ['pandas'],
'dc1': ['sqlalchemy', 'pymssql'],
'dc2_coadd': ['tables', 'pandas'],
'dc2_source': ['pyarrow', 'pandas'],
'focal_plane': ['scikit-image', 'pandas'],
'full': ['h5py', 'sqlalchemy', 'pymssql', 'pandas', 'tables', 'scikit-image', 'healpy', 'pyarrow'],
},
package_data={'GCRCatalogs': ['catalog_configs/*.yaml']},
)