Metadata-Version: 2.4
Name: our-consensus
Version: 0.1.0
Summary: VRF-based consensus, validator selection, and anti-gaming for the ourochronos ecosystem
Project-URL: Homepage, https://github.com/ourochronos/our-consensus
Project-URL: Repository, https://github.com/ourochronos/our-consensus
Author: Chris Jacobs
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Provides-Extra: crypto
Requires-Dist: cryptography>=42.0; extra == 'crypto'
Provides-Extra: dev
Requires-Dist: cryptography>=42.0; extra == 'dev'
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pre-commit>=3.7; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest-mock>=3.12; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.4; extra == 'dev'
Description-Content-Type: text/markdown

# our-consensus

VRF-based consensus, validator selection, and anti-gaming for the ourochronos ecosystem

## Overview

_Brief description of what this brick does and why it exists._

## Install

```bash
pip install our-consensus
```

## Usage

```python
from our_consensus import ...
```

## API

_Document the public interface here._

## Development

```bash
# Install with dev dependencies
make dev

# Run linters
make lint

# Run tests
make test

# Run tests with coverage
make test-cov

# Auto-format
make format
```

## State Ownership

_Document what state this brick owns (tables, caches, files, etc.)._

## License

MIT
