From 48c6fc932fcdd5ecb576eb913a4a7bde53936971 Mon Sep 17 00:00:00 2001 From: radicamc Date: Thu, 24 Aug 2023 14:01:05 -0400 Subject: [PATCH] update to v2.0.2 --- README.md | 6 +++++- changelog.md | 4 ++++ setup.py | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f6af05c..b9edd18 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,11 @@ or the latest development version can be grabbed from GitHub: The GitHub version also includes testing data and examples. If you wish to use simulations instead of purely empirical wings to construct the trace profiles, you will need -the ```webbpsf``` package; the installation instructions for which can be found [here](https://webbpsf.readthedocs.io/en/latest/installation.html#installing-or-updating-synphot). +the ```webbpsf``` package, which can be included via the following option during installation: + + pip install applesoss[webbpsf] + +Alternatively, its installation instructions can be found [here](https://webbpsf.readthedocs.io/en/latest/installation.html#installing-or-updating-synphot). If you make use of this code, please cite the [APPLESOSS paper](https://ui.adsabs.harvard.edu/abs/2022arXiv220705136R/abstract). diff --git a/changelog.md b/changelog.md index 668a055..560643b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +### [2.0.2] -- 2023-07-24 +#### Added +- Streamline installation process. + ### [2.0.1] -- 2023-07-24 #### Added - Misc. bug fixes. diff --git a/setup.py b/setup.py index 7c94c08..c44b160 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup setup(name='applesoss', - version='2.0.1', + version='2.0.2', license='MIT', author='Michael Radica', author_email='michael.radica@umontreal.ca', @@ -15,7 +15,7 @@ package_data={'': ['README.md', 'LICENSE']}, install_requires=['astropy', 'astroquery', 'matplotlib', 'numpy', 'scipy'], - extras_requires={'webbpsf': ['webbpsf>=1.1.1']}, + extras_require={'webbpsf': ['applesoss', 'webbpsf>=1.1.1']}, classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research',