Metadata-Version: 2.4
Name: safe-chain-pi-test
Version: 0.0.1
Summary: A tiny test pip package created for demonstration
Author-email: Your Name <you@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# safe-chain-pi-test

A repository created to test the Aikido safe-chain functionality. The package will be flagged by Aikido safe-chain as malware so we can verify whether downloads get properly blocked.

This package provides a simple console utility that draws a cute bug in ASCII art.

## Usage

```python
from safe_chain_pi_test import print_bug, draw_bug

# Print a bug to the console
print_bug()

# Get the bug as a string
bug_art = draw_bug()
print(bug_art)
```

## Installation

Install locally:

    python -m pip install --upgrade build
    python -m build
    python -m pip install dist/safe-chain-pi-test-0.0.1-py3-none-any.whl

## Testing

Run tests:

    python -m pip install pytest
    pytest -q
