-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add openbb-devtools metapackage * adding devtools to the dev_install script --------- Co-authored-by: hjoaquim <[email protected]>
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 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 | ||
``` |
Empty file.
1 change: 1 addition & 0 deletions
1
openbb_platform/extensions/devtools/openbb_devtools/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""Placeholder for openbb_devtools.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[tool.poetry] | ||
name = "openbb-devtools" | ||
version = "0.1.0" | ||
description = "Tools for OpenBB Platform Developers" | ||
authors = ["OpenBB Team <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{ include = "openbb_devtools" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.12" # scipy forces <4.0 explicitly | ||
ruff = "^0.1.5" | ||
pylint = "^3.0.2" | ||
mypy = "^1.6.1" | ||
pydocstyle = "^6.3.0" | ||
black = "^23.11.0" | ||
bandit = "^1.7.5" | ||
pre-commit = "^3.5.0" | ||
tox = "^4.11.3" | ||
pytest = "^7.4.3" | ||
pytest-cov = "^4.1.0" | ||
ipykernel = "^6.26.0" | ||
types-python-dateutil = "^2.8.19.14" | ||
types-toml = "^0.10.8.7" | ||
poetry = "^1.7.0" | ||
|
||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |