forked from vortex-exoplanet/VIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (56 loc) · 2.11 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
61
62
#!/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-DO. Meanwhile please rely on the docstrings and jupyter tutorial.
"""
PACKAGE_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
with open(os.path.join(PACKAGE_PATH, 'VERSION')) as version_file:
__version__ = version_file.read().strip()
setup(
name='vip',
version=__version__,
description='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/vortex-exoplanet/VIP',
packages=find_packages(),
include_package_data=True,
install_requires=['cython',
'numpy >= 1.8',
'scipy >= 0.17',
'ipython >= 3.2',
'jupyter',
'astropy >= 1.0.2',
'emcee >= 2.1',
'corner >= 1.0.2',
'pandas >= 0.18',
'matplotlib >= 1.4.3',
'scikit-learn >= 0.17',
'scikit-image >= 0.11',
'psutil',
'pytest',
'photutils >= 0.1',
'image_registration',
'FITS_tools',
'pywavelets',
'pyprind'],
zip_safe=False,
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Astronomy'
]
)