forked from vortex-exoplanet/VIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (55 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
readme = open('readme.rst').read()
doclink = """
Documentation
-------------
To be uploaded. Meanwhile please rely on the docstrings.
"""
PACKAGE_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
setup(
name='vip-pipeline',
version='0.0a1',
description='VIP package for astronomical high-contrast image processing and exoplanet detection.',
long_description=readme + '\n\n' + doclink + '\n\n',
author='Carlos Gomez',
author_email='[email protected]',
url='https://github.com/carlgogo/vip_exoplanets.git',
packages=find_packages(),
include_package_data=True,
install_requires=['cython',
'numpy >= 1.8.1',
'scipy >= 0.14.0',
'ipython',
'astropy >= 1.0.2',
'emcee',
'corner',
'pandas',
'matplotlib',
'scikit-learn',
'scikit-image',
'pytest',
'photutils',
'image_registration',
'FITS_tools',
'pywavelets',
'pyprind'
],
license=' not defined ',
zip_safe=False,
keywords='VIP',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
"Intended Audience :: Science/Research",
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
]
)