-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 910 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 910 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
31
32
33
34
[tool.poetry]
name = "openbb-akshare"
version = "1.2.5"
description = "AKShare extension for OpenBB"
authors = ["Roger Ye <shugaoye@yahoo.com>"]
license = "AGPL-3.0-only"
readme = "README.md"
packages = [{ include = "openbb_akshare" }]
[tool.poetry.dependencies]
python = ">=3.13,<=3.14.3"
akshare = "1.18.56"
openbb = "4.7.1"
openbb-core = { version = "^1.6.8" }
mysharelib = "^1.0.5"
ipywidgets = "^8.1.7"
uvicorn = "^0.40.0"
[tool.poetry.group.dev.dependencies]
openbb-devtools = { version = "^1.6.6" }
ipykernel = "^7.2.0"
pytest = "^9.0.3"
pytest-freezer = "^0.4.9"
# Replace pytest-freezegun with pytest-freezer for Python 3.13 compatibility
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."openbb_core_extension"]
akshare = "openbb_akshare.router:router"
[tool.poetry.plugins."openbb_provider_extension"]
akshare = "openbb_akshare:provider"