Metadata-Version: 2.1
Name: wintertoo
Version: 1.6.1
Author-email: Robert Stein <rdstein@caltech.edu>, Danielle Frostig <frostig@mit.edu>, Viraj Karambelkar <viraj@astro.caltech.edu>
License: MIT
Project-URL: homepage, https://github.com/winter-telescope/wintertoo
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: astropy >=6.0.0
Requires-Dist: astroplan >=0.10
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pytz
Requires-Dist: jsonschema
Requires-Dist: sqlalchemy
Requires-Dist: pydantic >=2.2.0
Requires-Dist: pre-commit
Requires-Dist: bcrypt
Requires-Dist: psycopg
Requires-Dist: psycopg-binary
Provides-Extra: dev
Requires-Dist: black >=24.1.0 ; extra == 'dev'
Requires-Dist: isort >=5.13.0 ; extra == 'dev'
Requires-Dist: pylint >=3.0.0 ; extra == 'dev'
Requires-Dist: coveralls ; extra == 'dev'

# wintertoo
[![PyPI version](https://badge.fury.io/py/wintertoo.svg)](https://badge.fury.io/py/wintertoo)
[![CI](https://github.com/winter-telescope/wintertoo/actions/workflows/continuous_integration.yml/badge.svg)](https://github.com/winter-telescope/wintertoo/actions/workflows/continuous_integration.yml) 
[![Coverage Status](https://coveralls.io/repos/github/winter-telescope/wintertoo/badge.svg?branch=main)](https://coveralls.io/github/winter-telescope/wintertoo?branch=main) 

General package for Target-of-Opportunity (ToO) observations with the [WINTER observatory](https://github.com/winter-telescope). 

Current functionality includes:
* Converting RA/DEC positions to fields
* Building ToO schedules
* Verifying ToO schedules

## Installation
### Install from pypi
```bash
pip install wintertoo
```

### Install from source
```bash
git clone git@github.com:winter-telescope/wintertoo.git
cd wintertoo
pip install --editable ".[dev]"
pre-commit install
```
