generated from cvxgrp/simulator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (39 loc) · 1015 Bytes
/
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
[tool.poetry]
name = "cvxmarkowitz"
version = "0.0.0"
description = "Markowitz"
authors = ["Thomas Schmelzer", "Kasper Johansson", "Philipp Schiele", "Stephen Boyd"]
readme = "README.md"
repository = "https://github.com/cvxgrp/cvxmarkowitz"
packages = [{include = "cvx"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
cvxpy-base = "*"
clarabel = "*"
fire = "*"
[tool.poetry.group.test.dependencies]
pytest = "8.3.3"
pytest-cov = "6.0.0"
pre-commit = "4.0.1"
mock = "*"
[tool.poetry.group.dev.dependencies]
pandas = "*"
plotly = "*"
loguru = "*"
scikit-learn = "*"
#cvxpyanalyzer = "*"
cvxsimulator = ">=0.7.3"
cvxbson= "*"
ipykernel = "*"
[build-system]
requires = ["poetry>=1.6.0"]
build-backend = "poetry.core.masonry.api"
# Relevant documentation:
# https://medium.com/clarityai-engineering/how-to-create-and-distribute-a-minimalist-cli-tool-with-python-poetry-click-and-pipx-c0580af4c026
[tool.ruff]
select = ["E", "F", "I"]
line-length = 100
target-version = "py310"
exclude = [
"*__init__.py"
]