generated from cvxgrp/simulator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (46 loc) · 1.02 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
[project]
name = "cvxmarkowitz"
version = "0.0.0"
description = "Markowitz"
authors = [{name = "Thomas Schmelzer", email = "[email protected]"}]
readme = "README.md"
#authors = ["Thomas Schmelzer", "Kasper Johansson", "Philipp Schiele", "Stephen Boyd"]
#readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cvxpy-base>=1.6.0",
"numpy>=2.1.3",
"clarabel",
"typing-extensions"
]
[project.urls]
repository = "https://github.com/cvxgrp/cvxmarkowitz"
[dependency-groups]
dev = [
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"pre-commit>=4.0.1",
"mock",
"yfinance",
"loguru",
"tinycta",
"plotly",
"cvxsimulator",
"cvxbson",
"scikit-learn"
]
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [
"*__init__.py"
]
[tool.ruff.lint]
select = ["E", "F", "I"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cvx"]
[tool.deptry.per_rule_ignores]
DEP002 = ["cvxpy-base", "clarabel"]