Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
include README.rst
include CHANGES.rst

include ez_setup.py
include ah_bootstrap.py
include setup.cfg
include packagename/tests/coveragerc

recursive-include packagename *.pyx *.c *.pxd
recursive-include docs *
recursive-include licenses *
recursive-include cextern *
recursive-include scripts *

prune build
prune docs/_build
prune docs/api


# the next few stanzas are for astropy_helpers. It's derived from the
# astropy_helpers/MANIFEST.in, but requires additional includes for the actual
# package directory and egg-info.

include astropy_helpers/README.rst
include astropy_helpers/CHANGES.rst
include astropy_helpers/LICENSE.rst
recursive-include astropy_helpers/licenses *

include astropy_helpers/ez_setup.py
include astropy_helpers/ah_bootstrap.py

recursive-include astropy_helpers/astropy_helpers *.py *.pyx *.c *.h *.rst
recursive-include astropy_helpers/astropy_helpers.egg-info *
# include the sphinx stuff with "*" because there are css/html/rst/etc.
recursive-include astropy_helpers/astropy_helpers/sphinx *

prune astropy_helpers/build
prune astropy_helpers/astropy_helpers/tests


global-exclude *.pyc *.o
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pyNRC - A JWST NIRCam ETC

*Authors:* Jarron Leisenring (University of Arizona)

*Contributors:* Everett Schlawin (University of Arizona)
*Contributors:* Everett Schlawin (University of Arizona), Jonathan Fraine (STScI)

**!!Under Development!!**

Expand All @@ -13,12 +13,13 @@ simulator.
pyNRC works for a vareity NIRCam observing modes including direct imaging,
coronagraphic imaging, slitless grism spectroscopy, ~~DHS observations~~ (TBI),
and weak lens imaging.
All PSFs are generated via WebbPSF (https://pythonhosted.org/webbpsf/) to reproduce
All PSFs are generated via WebbPSF (https://webbpsf.readthedocs.io/en/stable/) to reproduce
realistic JWST images and spectra.

**Note**: pyNRC allows for more modes than are officially allowed by the Observatory,
(ie., filter + coronagraphic combinations, subarray sizes, etc.).
Just because you can do something with pyNRC does not mean it will be supported.
Check out https://jwst-docs.stsci.edu/display/JTI/NIRCam+Observing+Modes for more information.

## Installation

Expand Down
Loading