forked from LSSTDESC/descqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.05 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
#!/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__), 'descqa', 'version.py')) as f:
exec(f.read())
setup(
name='descqa',
version=__version__,
description='DESCQA: LSST DESC QA Framework for mock galaxy catalogs',
url='https://github.com/LSSTDESC/descqa',
author='LSST DESC',
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 :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='DESCQA',
packages=['descqa'],
install_requires=['pyyaml'],
extras_require = {
'full': ['future', 'numpy', 'scipy', 'matplotlib', 'healpy', 'GCR>=0.6.1'],
},
package_data={'descqa': ['configs/*.yaml', 'data/*']},
)