-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 763 Bytes
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 763 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
35
36
[tool.poetry]
name = "openbb-fd"
version = "1.0.0"
description = "Integration of Jeroen Bouma's Finance Database with OpenBB"
authors = ["piiq <piiq@tinag.ru>"]
readme = "README.md"
packages = [{ include = "openbb_fd" }]
[tool.poetry.dependencies]
python = "^3.8,<3.12"
openbb-core = "^1.0.1"
[tool.poetry.group.dev.dependencies]
openbb-devtools = "^1.0.0"
openbb = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."openbb_provider_extension"]
fd = "openbb_fd:fd_provider"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
priority = "supplemental"
[tool.ruff]
line-length = 122
target-version = "py38"