-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.24 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (35 loc) · 1.24 KB
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
#!/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-2018 Yao-Yuan Mao (yymao)
http://opensource.org/licenses/MIT
"""
import os
from setuptools import setup
# pylint: disable=E0602,W0122
with open(os.path.join(os.path.dirname(__file__), 'GCR', 'version.py')) as f:
exec(f.read())
setup(
name='GCR',
version=__version__, # noqa: F821
description='Generic Catalog Reader: A common reader interface for accessing generic catalogs',
url='https://github.com/yymao/generic-catalog-reader',
download_url='https://github.com/yymao/generic-catalog-reader/archive/v{}.zip'.format(__version__), # noqa: F821
author='Yao-Yuan Mao',
author_email='yymao.astro@gmail.com',
maintainer='Yao-Yuan Mao',
maintainer_email='yymao.astro@gmail.com',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='GCR catalog reader',
packages=['GCR'],
install_requires=['numpy', 'easyquery>=0.1.3'],
)