-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 784 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (25 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[tool.poetry]
name = "openbb-tdx"
version = "1.2.2"
description = "TdxQuant data provider extension for OpenBB Platform"
authors = ["Roger Ye <shugaoye@yahoo.com>"]
license = "AGPL-3.0-only"
readme = "README.md"
packages = [{ include = "openbb_tdx" }]
[tool.poetry.dependencies]
python = ">=3.13,<=3.14.3"
openbb = "4.7.1"
openbb-core = { version = "^1.6.8" }
mysharelib = "^1.0.5"
uvicorn = "^0.40.0"
[tool.poetry.group.dev.dependencies]
openbb-devtools = { version = "^1.6.6" }
ipykernel = "^7.2.0"
pytest = "^9.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."openbb_core_extension"]
tdxquant = "openbb_tdx.router:router"
[tool.poetry.plugins."openbb_provider_extension"]
tdxquant = "openbb_tdx.provider:provider"