Metadata-Version: 2.3
Name: openbb-devtools
Version: 1.4.4
Summary: Tools for OpenBB Platform Developers
License: AGPL-3.0-only
Author: OpenBB Team
Author-email: hello@openbb.co
Requires-Python: >=3.9.21,<3.13
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: bandit (>=1.7.5,<2.0.0)
Requires-Dist: black (>=25.1.0,<26.0.0)
Requires-Dist: codespell (>=2.2.5,<3.0.0)
Requires-Dist: ipykernel (>=6.29.5,<7.0.0)
Requires-Dist: mypy (>=1.12.1,<2.0.0)
Requires-Dist: poetry (>=1.8.0)
Requires-Dist: pre-commit (>=3.5.0,<4.0.0)
Requires-Dist: pydocstyle (>=6.3.0,<7.0.0)
Requires-Dist: pylint (>=3.3,<4.0)
Requires-Dist: pytest (>=7.4.3,<8.0.0)
Requires-Dist: pytest-asyncio (>=0.23.2,<0.24.0)
Requires-Dist: pytest-cov (>=4.1.0,<5.0.0)
Requires-Dist: pytest-recorder (>=0.4.8,<0.5.0)
Requires-Dist: pytest-subtests (>=0.11.0,<0.12.0)
Requires-Dist: ruff (>=0.12,<0.13)
Requires-Dist: tox (>=4.11.3,<5.0.0)
Requires-Dist: types-python-dateutil (>=2.8.19.14,<3.0.0.0)
Requires-Dist: types-toml (>=0.10.8.7,<0.11.0.0)
Description-Content-Type: text/markdown

# The OpenBB DevTools Extension

This extension aggregates the dependencies that facilitate a nice development experience
for OpenBB. It does not contain any code itself, but rather pulls in the following dependencies:

- Linters (ruff, pylint, mypy)
- Code formatters (black)
- Code quality tools (bandit)
- Pre-commit hooks (pre-commit)
- CI/CD configuration (tox, pytest, pytest-cov)
- Jupyter kernel (ipykernel)
- ... add your productivity booster here ...

## Installation

The extension is included into the dev_install.py script.

Standalone installation:

```bash
pip install openbb-devtools
```

