Metadata-Version: 2.4
Name: dhow
Version: 0.1.0
Summary: A lightweight Python toolkit for building and sharing data workflows.
Author: Dhow Contributors
License: MIT
Project-URL: Homepage, https://github.com/dhow-org/dhow
Project-URL: Repository, https://github.com/dhow-org/dhow
Project-URL: Issues, https://github.com/dhow-org/dhow/issues
Keywords: dhow,data,workflow
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# dhow

`dhow` is a lightweight Python toolkit for building and sharing data workflows.

This early release reserves the project name on PyPI while the first stable API is being developed.

## Install

```bash
pip install dhow
```

## Quick start

```python
import dhow

print(dhow.greet("world"))
print(dhow.about())
```

Or run from the command line:

```bash
python -m dhow
```

## Status

Pre-alpha — APIs will change.

## License

MIT
