Metadata-Version: 2.4
Name: autoplay-l7
Version: 0.1.0
Summary: Playwright automation scaffold installer for L7 projects
Author-email: L7 Informatics <koushik.balabadruni@l7informatics.com>
License: MIT
Keywords: playwright,automation,testing,scaffold
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# auto-play

Playwright automation scaffold installer for L7 projects.

## Installation

```bash
pip install auto-play
```

## Usage

Inside your project root, run:

```bash
auto-play init
```

This copies the `automation/` folder (with all pages, utils, fixtures, and e2e templates) into your current directory.

### Options

```
auto-play init [--target DIR] [--force]

  --target DIR   Directory to create automation/ in (default: current directory)
  --force        Overwrite an existing automation/ directory
```

### Example

```bash
cd my-project/
auto-play init
# → automation/ is now created in my-project/
```

## What gets installed

```
automation/
├── conftest.py
├── pytest.ini
├── requirements.txt
├── playwright.sh
├── utils/
├── pages/
├── e2e/
└── fixtures/
```
