Metadata-Version: 2.4
Name: paraiso
Version: 0.0.1
Summary: A small Python package for PARAISO-style capture routing.
Author: EJ Labs
Project-URL: Homepage, https://github.com/ejlabs-org/paraiso
Project-URL: Repository, https://github.com/ejlabs-org/paraiso
Project-URL: Issues, https://github.com/ejlabs-org/paraiso/issues
Keywords: paraiso,para,capture,personal-knowledge,ai
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business
Classifier: Topic :: Text Processing
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# paraiso

PARAISO is an early Python package for turning raw human capture into calm,
structured personal-knowledge items.

This first release reserves the package name while the capture-routing API is
being extracted and cleaned up for open source use.

## Install

```bash
pip install paraiso
```

## Planned API

```python
import paraiso

result = paraiso.capture(
    "Someday: collect customer quotes for the launch essay",
    areas=[
        paraiso.Area(id="writing", name="Writing", tags=["essay"]),
        paraiso.Area(id="product", name="Product", tags=["launch", "research"]),
    ],
    objectives=[
        paraiso.Objective(id="launch", title="Launch the MVP"),
    ],
)
```

The package will focus on PARAISO-style capture routing:

- Projects
- Areas
- Resources
- Archive
- Inbox
- Someday
- Objectives

## Status

`0.0.1` is a planning release. The public API is intentionally tiny until the
capture routines are ready for a stable `0.1.0`.
