-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (43 loc) · 1.06 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
[tool.poetry]
name = "cvxsimulator"
version = "0.0.0"
description = "Simple simulator for investors"
authors = ["Thomas Schmelzer"]
readme = "README.md"
repository = "https://github.com/cvxgrp/simulator"
packages = [{include = "cvx"}]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = "*"
pandas = ">=2.2.0"
plotly = "*"
# why did I include this?
# pyarrow = "*"
ipython = { version = "*", optional = true }
quantstats = { version = "*", optional = true }
jsonschema = "*"
fastjsonschema = "*"
[tool.poetry.extras]
quantstats = ["quantstats", "ipython"]
[tool.poetry.group.test.dependencies]
pytest = "8.3.3"
pytest-cov = "6.0.0"
pre-commit = "4.0.1"
[tool.poetry.group.dev.dependencies]
loguru = "*"
cvxpy-base = "1.5.3"
clarabel = "0.9.0"
tinycta = "0.7.1"
ipykernel = "6.29.5"
[build-system]
requires = ["poetry>=1.6.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = ["E", "F", "I"]
line-length = 120
target-version = "py310"
exclude = [
"*__init__.py",
]
[tool.deptry.per_rule_ignores]
DEP002 = ["ipython", "quantstats", "jsonschema", "fastjsonschema"]