-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
75 lines (68 loc) · 2.41 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
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
Setup script to install package.
"""
# -----------------------------------------------------------------------------
# IMPORTS
# -----------------------------------------------------------------------------
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
# -----------------------------------------------------------------------------
# RUN setup() FUNCTION
# -----------------------------------------------------------------------------
setup(
name="applefy",
version="0.1.2",
description=(
"applefy: A library to compute detection limits for high contrast"
" imaging of exoplanets"
),
author="Markus Bonse, Timothy Gebhard",
author_email="[email protected]",
license="MIT License",
url="https://github.com/markusbonse/applefy.git",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"numpy>=1.18",
"astropy>=4.3",
"pandas>=1.5",
"photutils>=1.3.0",
"numba>=0.54",
"scikit-learn>=1.0",
"scipy>=1.8.0",
"tqdm>=4.62.3",
"h5py>=3.6"],
extras_require={
"pynpoint": [
'pynpoint @ git+https://github.com/PynPoint/PynPoint.git#egg=pynpoint-0.10.0'],
"vip": [
"vip_hci>=1.5.2",
"packaging>=22.0"],
"dev": ["furo>=2022.12.7",
"sphinx_rtd_theme==1.1.1",
"sphinx>=2.1,<6",
"myst-parser~=0.18.1",
"nbsphinx>=0.8.9",
"sphinx-copybutton~=0.5.1",
"sphinx-gallery<=0.10",
"twine~=4.0.2",
# needed for syntax highlighting in jupyter notebooks
"IPython~=8.8.0",
"ipywidgets~=8.0.4",
# spell checking in jupyter notebooks
"jupyter_contrib_nbextensions~=0.7.0",
"sphinx-autodoc-typehints>1.6"],
"fast_sort": ["parallel_sort==0.0.3", ],
"plotting": ["seaborn~=0.12.1",
"matplotlib>=3.4.3",
"bokeh>=3.0.3"],
},
packages=find_packages(include=['applefy',
'applefy.*']),
zip_safe=False,
)