generated from cvxgrp/simulator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 894 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
[project]
name = "cvxrisk"
version = "0.0.0"
description = "Simple riskengine for cvxpy"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cvxpy-base>=1.6.0",
"numpy>=2.1.3",
"pandas>=2.2.3",
"scikit-learn>=1.5.2",
"scipy>=1.14.1",
]
authors = [{name = "Thomas Schmelzer", email = "[email protected]"}]
repository = "https://github.com/cvxgrp/cvxrisk"
[dependency-groups]
dev = [
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"pre-commit>=4.0.1",
"clarabel>=0.9.0",
"cvxsimulator>=1.2.1",
]
[tool.ruff]
select = ["E", "F", "I"]
line-length = 120
target-version = "py310"
exclude = [
"*__init__.py"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cvx"]
[tool.deptry.per_rule_ignores]
DEP001 = ["cvxpy", "sklearn"]
DEP002 = ["cvxpy-base", "scikit-learn"]