-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
49 lines (45 loc) · 1.38 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "okama-dash"
version = "2.0.0"
description = "Python financial widgets with okama and Dash (plotly)"
authors = ["Sergey Kikevich <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://okama.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [{include = "okama_dash"}]
[tool.poetry.dependencies]
python = ">=3.9, <4.0.0"
okama = "^1.4.1"
dash = "^2.5.1"
dash-daq = "^0.5.0"
dash-bootstrap-components = "^1.2.0"
plotly = "^5.9.0"
Flask-Caching = "*"
pandas = "^2.0.0"
redis = "*"
xlsxwriter = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
black = { version = "*", optional = true }
gunicorn = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120