Metadata-Version: 2.4
Name: agentic-codebase
Version: 0.3.0
Summary: Semantic code compiler for AI agents
Project-URL: Homepage, https://github.com/agentralabs/agentic-codebase
Project-URL: Documentation, https://github.com/agentralabs/agentic-codebase/tree/main/docs
Project-URL: Repository, https://github.com/agentralabs/agentic-codebase
Author: Agentra Labs
License: MIT
License-File: LICENSE
Keywords: agents,ai,analysis,codebase,mcp,semantic
Classifier: Development Status :: 4 - Beta
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: Programming Language :: Rust
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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

# agentic-codebase

Semantic code compiler for AI agents.

## Installation

```bash
pip install agentic-codebase
```

## Quick Start

```python
import agentic_codebase

print(agentic_codebase.__version__)
```

## Development

```bash
# Build the native library
cargo build --release

# Install in dev mode
pip install -e "python/[dev]"

# Run tests
pytest python/tests/ -v
```

## License

MIT
