summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/pyproject.toml
blob: 394ca5e2ea82f2e899875faddd1b0b3b9a286125 (plain)
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
[tool.poetry]
name = "openbb-cli"
version = "1.0.0"
description = "Investment Research for Everyone, Anywhere."
license = "MIT"
authors = ["OpenBB <hello@openbb.co>"]
packages = [{ include = "openbb_terminal" }]
include = ["openbb_terminal/.env"]
readme = "README.md"
homepage = "https://openbb.co"
repository = "https://github.com/OpenBB-finance/OpenBBTerminal"
documentation = "https://docs.openbb.co/sdk"

[tool.poetry.scripts]
openbb = 'openbb_terminal.cli:main'

[tool.poetry.dependencies]
python = "^3.8.1,<3.12"

# OpenBB dependencies
openbb = "^4.1.6"
openbb-charting = "^2.0.2"

# Terminal dependencies
prompt-toolkit = "^3.0.16"
rich = "^13"
python-dotenv = "^1.0.0"
python-i18n = "^0.3.9"

[tool.poetry.group.dev.dependencies]
openbb-devtools = "^1.1.3"

[build-system]
requires = ["setuptools<65.5.0", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"