Metadata-Version: 2.4
Name: ExploTest
Version: 0.4.0
Summary: Automatically generate arguments of Python functions.
Author-email: Kevin Liu <kliu52@student.ubc.ca>, Randy Zhu <randyzhu@student.ubc.ca>
License-Expression: LGPL-3.0-or-later
Project-URL: Homepage, https://github.com/kliu04/explotest
Project-URL: Issues, https://github.com/kliu04/explotest/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dill
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: pyright; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-timeout; extra == "test"
Requires-Dist: numpy; extra == "test"
Requires-Dist: pandas; extra == "test"
Requires-Dist: coverage; extra == "test"
Provides-Extra: repl
Requires-Dist: ipython; extra == "repl"
Dynamic: license-file

# ExploTest

ExploTest is a tool to create unit tests from exploratory test runs.

This project is currently under active development and API breaks can occur at any time.

## Installation
```bash
pip install ExploTest
```

### Local Installation

```bash
python3 -m pip install -e .
```

## Development Setup

Create a venv, then install `pip-tools`. Run `pip-compile` as specified.

```bash
python3 -m venv .venv
pip install pip-tools
pip-compile -o requirements.txt ./pyproject.toml
pip install -r requirements.txt
```

## Copyright

ExploTest is free and open source software, licensed under the GNU LGPL v3 or any later version.
