Metadata-Version: 2.4
Name: qalk
Version: 0.1.0
Summary: NumPy-style degree-based trigonometric helpers.
Requires-Python: >=3.9
Requires-Dist: numpy>=1.26
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# qalk

`qalk` re-exports NumPy's public API and adds degree-based trigonometric helpers.

## Install

```bash
uv add qalk
```

## Usage

```python
from qalk import *

print(sind(30))        # 0.5
print(cosd(60))        # 0.5
print(arcsind(0.5))    # 30.0
print(arctan2d(1, 1))  # 45.0
```

The regular NumPy symbols are also available through the same import:

```python
from qalk import array, pi, sin, sind
```

## Development

```bash
uv sync --extra dev
uv run pytest
uv build
```
