-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (44 loc) · 969 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
46
47
48
49
50
51
52
[project]
name = "cvxsimulator"
version = "0.0.0"
description = "Simple simulator for investors"
authors = [{name = "Thomas Schmelzer", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"cvxpy-base>=1.6.0",
"numpy>=2.1.3",
"pandas>=2.2.3",
"plotly>=5.0.0",
]
[project.urls]
repository = "https://github.com/cvxgrp/simulator"
[project.optional-dependencies]
quantstats = [
"quantstats",
"ipython",
]
[dependency-groups]
dev = [
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"pre-commit>=4.0.1",
"clarabel>=0.9.0",
"loguru",
"tinycta"
]
[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", "ipython", "quantstats"]