mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-06 14:03:15 +08:00
* bump python-multipart and fix yfinance property * remove file that wasn't supposed to be added to commit
36 lines
820 B
TOML
Vendored
36 lines
820 B
TOML
Vendored
[tool.poetry]
|
|
name = "openbb-core"
|
|
version = "1.6.8"
|
|
description = "OpenBB package with core functionality."
|
|
authors = ["OpenBB Team <hello@openbb.co>"]
|
|
license = "AGPL-3.0-only"
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "openbb_core" },
|
|
{ include = "openbb" }
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<4"
|
|
uvicorn = "^0.40.0"
|
|
websockets = ">=15.0"
|
|
pandas = ">=1.5.3"
|
|
html5lib = "^1.1"
|
|
fastapi = "^0.128.0"
|
|
uuid7 = "^0.1.0"
|
|
python-multipart = "^0.0.26"
|
|
pydantic = "^2.12.3"
|
|
requests = "^2.33.0"
|
|
importlib-metadata = ">=6.8.0"
|
|
python-dotenv = "^1.0.0"
|
|
aiohttp = ">=3.13.3"
|
|
ruff = "^0.15" # Needed here to lint generated code
|
|
pyjwt = "^2.12.0"
|
|
|
|
[tool.poetry.scripts]
|
|
openbb-build = "openbb_core.build:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|