Metadata-Version: 2.1
Name: openbb-devtools
Version: 1.1.3
Summary: Tools for OpenBB Platform Developers
Author: OpenBB Team
Author-email: hello@openbb.co
Requires-Python: >=3.8,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: bandit (>=1.7.5,<2.0.0)
Requires-Dist: black (>=24.1.0,<25.0.0)
Requires-Dist: codespell (>=2.2.5,<3.0.0)
Requires-Dist: ipykernel (>=6.26.0,<7.0.0)
Requires-Dist: mypy (>=1.6.1,<2.0.0)
Requires-Dist: poetry (>=1.7.0,<2.0.0)
Requires-Dist: pre-commit (>=3.5.0,<4.0.0)
Requires-Dist: pydocstyle (>=6.3.0,<7.0.0)
Requires-Dist: pylint (>=3.0.2,<4.0.0)
Requires-Dist: pytest (>=7.4.3,<8.0.0)
Requires-Dist: pytest-cov (>=4.1.0,<5.0.0)
Requires-Dist: ruff (>=0.1.5,<0.2.0)
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
```

