-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
77 lines (68 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "okama"
version = "1.4.4"
description = "Investment portfolio analyzing & optimization tools"
authors = ["Sergey Kikevich <[email protected]>"]
license = "MIT"
homepage = "https://okama.io"
repository = "https://github.com/mbk-dev/okama"
documentation = "https://okama.readthedocs.io/en/master"
readme = "README.md"
keywords = ["finance", "investments", "efficient frontier", "python", "optimization"]
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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0.0"
pandas = "^2.0.0"
scipy = ">=1.9.0"
matplotlib = ">=3.5.1"
requests = "*"
joblib = "*"
[tool.poetry.group.test]
optional = false
[tool.poetry.group.test.dependencies]
pytest = "*"
black = {extras = ["jupyter"], version = "*"}
pytest-xdist = "*"
flake8 = "*"
[tool.poetry.group.docs]
optional = false
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
numpydoc = "*"
nbsphinx = "*"
nbsphinx-link = "*"
pandoc = "*"
recommonmark = "*"
Jinja2 = "*"
[tool.poetry.group.jupyter]
optional = false
[tool.poetry.group.jupyter.dependencies]
jupyter = "*"
ipykernel = "*"
ipython = "*"
nbmake = "*" # test jupyter notebooks
zmq = "*" # required to run pytest
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
exclude = '/docs'