Metadata-Version: 2.4
Name: infer_filter_info
Version: 0.0.2
Author-email: Noah Franz <nfranz@arizona.edu>
License: MIT License
        
        Copyright (c) 2023 Noah Franz
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Home, https://github.com/noahfranz13/infer_filter_info
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Development Status :: 2 - Pre-Alpha
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: astropy
Requires-Dist: astroquery
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: furo; extra == "docs"
Requires-Dist: nbsphinx; extra == "docs"
Requires-Dist: ipykernel; extra == "docs"
Requires-Dist: pandoc; extra == "docs"
Provides-Extra: dev
Requires-Dist: python-semantic-release; extra == "dev"
Requires-Dist: build; extra == "dev"
Dynamic: license-file

# Infer Filter Information

[![CI](https://github.com/noahfranz13/infer_filter_info/actions/workflows/ci.yml/badge.svg)](https://github.com/noahfranz13/infer_filter_info/actions/workflows/ci.yml)
[![Documentation Status](https://readthedocs.org/projects/infer-filter-info/badge/?version=latest)](https://infer-filter-info.readthedocs.io/en/latest/?badge=latest)

This is a minimal python package for inferring the filter effective wavelength and transmission curve based on the filter name and, optionally, 
the telescope and instrument. In the case that just the filter name is provided we have defined defaults that will be correct in a majority of cases.

## Documentation

Full documentation is available at [https://infer-filter-info.readthedocs.io](https://infer-filter-info.readthedocs.io).

## Development

This project uses [Semantic Versioning](https://semver.org/) and [Conventional Commits](https://www.conventionalcommits.org/). Versions are automatically managed by `python-semantic-release` upon pushing to the `main` branch.

To ensure proper version bumping, please use the following commit message formats:
- `fix: ...` for a patch release (e.g., 0.0.1)
- `feat: ...` for a minor release (e.g., 0.1.0)
- `feat!: ...` or `fix!: ...` (with a `BREAKING CHANGE` footer) for a major release (e.g., 1.0.0)

