Metadata-Version: 2.1
Name: llments
Version: 0.0.0a1
Summary: llments
Project-URL: repository, https://github.com/neulab/llments
Author-email: Graham Neubig <neubig@gmail.com>
License-File: LICENSE.txt
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: pandas
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Description-Content-Type: text/markdown

# llments

## Development Information

To start developing, install the development dependencies and pre-commit hooks:

```bash
pip install ".[dev]"
pre-commit install
```

There are several [pre-commit hooks](https://pre-commit.com/) that will run on every
commit to perform formatting, typing, and linting.

* `ruff` - Runs formatting, import sorting, and linting.
* `mypy` - Runs type checking.
* `markdownlint` - Runs markdown linting.
* `yamllint` - Runs YAML linting.
