Metadata-Version: 2.1
Name: prospector-profile-utils
Version: 1.12.2
Summary: Some utility Prospector profiles.
Home-page: https://github.com/sbrunner/prospector-profile-utils
License: BSD-2-Clause
Author: Stéphane Brunner
Author-email: stephane.brunner@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
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: prospector (>=1.13.0)
Project-URL: Repository, https://github.com/sbrunner/prospector-profile-utils
Description-Content-Type: text/markdown

# Prospector profile utils

It contains some utility Prospector profiles.

## Usage

```bash
pip install prospector-profile-utils
```

Then, in your `.prospector.yaml` file, you can use the profiles like this:

```yaml
inherits:
  - utils:base
  - utils:fix
  - utils:c2cwsgiutils
  - utils:no-design-checks
  - utils:unsafe
```

## Contributing

Install the pre-commit hooks:

```bash
pip install pre-commit
pre-commit install --allow-missing-config
```

