forked from LSSTDESC/generic-catalog-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1018 Bytes
/
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
#!/usr/bin/env python
"""
Generic Catalog Reader (GCR)
A common reader interface for accessing generic catalogs
https://github.com/yymao/generic-catalog-reader
The MIT License (MIT)
Copyright (c) 2017 Yao-Yuan Mao (yymao)
http://opensource.org/licenses/MIT
"""
from setuptools import setup
setup(
name='GCR',
version='0.2.0',
description='Generic Catalog Reader: A common reader interface for accessing generic catalogs',
url='https://github.com/yymao/generic-catalog-reader',
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 :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='GCR catalog reader',
py_modules=['GCR'],
install_requires=['numpy'],
)