Metadata-Version: 2.4
Name: agentic-time
Version: 0.1.0
Summary: Temporal reasoning for AI agents
Project-URL: Homepage, https://github.com/agentralabs/agentic-time
Project-URL: Documentation, https://github.com/agentralabs/agentic-time/tree/main/docs
Project-URL: Repository, https://github.com/agentralabs/agentic-time
Author: Agentra Labs
License-Expression: MIT
Keywords: agents,ai,mcp,reasoning,temporal
Classifier: Development Status :: 3 - 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: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# AgenticTime Python SDK

Temporal reasoning for AI agents — deadlines, schedules, sequences, duration estimation (PERT), and decay models.

## Install

```bash
pip install agentic-time
```

## Usage

```python
from agentic_time import TimeGraph

tg = TimeGraph("project.atime")
tg.add_deadline("Ship v1.0", "2026-03-15T17:00:00Z", priority="high")
tg.add_duration_estimate("Auth refactor", hours=8, confidence=0.7)
tg.save()
```

Requires the `atime` CLI binary on PATH. Install via:

```bash
curl -fsSL https://agentralabs.tech/install/time | bash
```
