-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 878 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 878 Bytes
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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
try:
from setuptools import setup, find_packages
setup
except ImportError:
from distutils.core import setup
setup
setup(
name='cone_search_plus',
version='0.2.0',
description='Search the sky for targets using a variety of tunable constraints',
url='https://github.com/hover2pi/cone_search_plus',
author='Joe Filippazzo, Neil Zimmerman',
author_email='jfilippazzo@stsci.edu',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
keywords='astrophysics',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy', 'astropy', 'matplotlib', 'ephem', 'astroquery'],
)