Metadata-Version: 2.4
Name: pycoati
Version: 0.1.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Rust
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
Requires-Dist: pytest>=6.0 ; extra == 'dev'
Provides-Extra: dev
License-File: LICENSE
Summary: Audit Python test suites for mock smells and suspicious tests
Keywords: rust
Author-email: mojzis <mojzisek@gmail.com>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: documentation, https://github.com/mojzis/pycoati#readme
Project-URL: homepage, https://github.com/mojzis/pycoati
Project-URL: repository, https://github.com/mojzis/pycoati

# pycoati

A new tool.

## Install

```bash
# From source (Rust)
cargo install --path .

# Or as a Python package (via maturin)
maturin develop
```

## Usage

```bash
pycoati --help
```

## Development

```bash
# Pre-commit checks
cargo fmt --check && cargo clippy --all-targets --all-features -- -D warnings && cargo test --all-features

# Full review (fmt, clippy, tests, audit, deny)
make review
```

## License

MIT

