Metadata-Version: 2.4
Name: lunar-converter
Version: 0.1.0
Summary: Gregorian and Chinese Lunar calendar converter with astrological details
Project-URL: Repository, https://github.com/frndvrgs/lunar-converter
Author-email: frndvrgs <frndvrgs@gmail.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: lunar-python>=1.4.0
Requires-Dist: questionary>=2.0.0
Provides-Extra: dev
Requires-Dist: mypy>=1.20.0; extra == 'dev'
Requires-Dist: poethepoet>=0.40.0; extra == 'dev'
Requires-Dist: ruff>=0.8.0; extra == 'dev'
Description-Content-Type: text/markdown

# lunar-converter

Gregorian and Chinese Lunar calendar converter with astrological details.

## Install

```bash
pip install lunar-converter
```

## Usage

```bash
lunar-converter
```

Interactive CLI with arrow-key navigation:
- Gregorian → Chinese Lunar
- Chinese Lunar → Gregorian

## Output

For each conversion:
- Gregorian: date, day of week, sun sign, element
- Lunar: date, Chinese year name, zodiac animal, cosmic element, Ming (命)

## API

```python
from lunar_calc import gregorian_to_lunar, lunar_to_gregorian

result = gregorian_to_lunar(1990, 6, 15)
result = lunar_to_gregorian(1990, 5, 23)
```

## License

MIT
