-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 898 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
[tool.poetry]
name = "openbb-store"
version = "0.1.5"
description = "An OBBject extension for object storage and data interchange."
authors = ["Danglewood <85772166+deeleeramone@users.noreply.github.com>"]
readme = "README.md"
packages = [{ include = "openbb_store" }]
[tool.poetry.dependencies]
python = "^3.10,<3.14"
openbb-core = "^1.5.5"
dill = "^0.4.0"
openbb-charting = { version = "^2.4.0", optional = true }
openpyxl = { version = "^3.1", optional = true }
xlrd = { version = "^2", optional = true }
random-user-agent = { version = "^1", optional = true }
[tool.poetry.extras]
excel = ["openpyxl", "xlrd", "random-user-agent"]
charting = ["openbb-charting"]
all = ["openpyxl", "xlrd", "random-user-agent", "openbb-charting"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."openbb_obbject_extension"]
store = "openbb_store:ext"