Metadata-Version: 2.4
Name: ezphot
Version: 0.3.0
Summary: Easy and flexible photometry toolkit in Python, from preprocessing to analysis, for various telescopes.
Author: Hyeonho Choi
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: astroalign>=2.6.1
Requires-Dist: astropy>=7.1.0
Requires-Dist: astroquery>=0.4.10
Requires-Dist: astroscrappy>=1.2.0
Requires-Dist: bottleneck>=1.5.0
Requires-Dist: ccdproc>=2.4.3
Requires-Dist: opencv-python>=4.12.0.88
Requires-Dist: h5py>=3.14.0
Requires-Dist: matplotlib>=3.10.3
Requires-Dist: numba>=0.61.2
Requires-Dist: numexpr>=2.11.0
Requires-Dist: numpy>=2.2.6
Requires-Dist: pandas>=2.3.0
Requires-Dist: photutils>=2.2.0
Requires-Dist: psutil>=7.0.0
Requires-Dist: pympler>=1.1
Requires-Dist: regions>=0.10
Requires-Dist: reproject>=0.14.1
Requires-Dist: requests>=2.32.4
Requires-Dist: scipy>=1.15.3
Requires-Dist: sep>=1.4.1
Requires-Dist: setuptools>=78.1.1
Requires-Dist: shapely>=2.1.1
Requires-Dist: scikit-learn>=1.7.0
Requires-Dist: statsmodels>=0.14.5
Requires-Dist: tqdm>=4.67.1
Requires-Dist: scikit-image>=0.24.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# ezphot

[![PyPI](https://img.shields.io/pypi/v/ezphot.svg)](https://pypi.org/project/ezphot/)
[![Documentation Status](https://readthedocs.org/projects/ezphot/badge/?version=latest)](https://ezphot.readthedocs.io/en/latest/)
[![License](https://img.shields.io/github/license/hhchoi1022/ezphot)](https://github.com/hhchoi1022/ezphot/blob/master/LICENSE)

---

**ezphot** is a high-level Python toolkit for **astronomical image processing and photometry**.  
It provides users with an integrated framework to handle the entire imaging workflow from raw calibration to photometric analysis and transient detection using a clean, modular, and scalable architecture.

## Features

- 🔭 **Complete imaging pipeline**: From raw data to photometric analysis
- ⚡ **Multiprocessing support**: Efficient parallel processing for large datasets
- 📊 **Advanced photometry**: Aperture and PSF photometry with automatic calibration
- 🎯 **Precise astrometry**: Built-in plate solving and coordinate transformations
- 📈 **Quality control**: Image quality assessment and selection tools
- 🔧 **Modular design**: Clean, extensible architecture for custom workflows

## Installation

The latest stable release of **ezphot** is available on [PyPI](https://pypi.org/project/ezphot/).  
Documentation: [ReadTheDocs](https://ezphot.readthedocs.io/en/latest/)  
Source: [GitHub](https://github.com/hhchoi1022/ezphot)

Install with pip::

    pip install ezphot

Upgrade to the newest version::

    pip install --upgrade ezphot

For development builds from TestPyPI::

    pip install -i https://test.pypi.org/simple/ ezphot

From source::

    git clone https://github.com/hhchoi1022/ezphot.git
    cd ezphot
    pip install .
