summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 34dedf5d95b795f093632ea55ae3b8aff9493e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool.poetry]
name = "sumofsquares"
version = "0.0.1"
description = "Tools for Sum of Square optimization"
authors = ["Michael Schneeberger <michael.schneeberger@fhnw.ch>"]
readme = "README.md"

[tool.poetry.dependencies]
polymatrix = {git = "https://gitlab.ethz.ch/npross/polymatrix.git"}
python = ">=3.10,<3.13"
cvxopt = ">=1.3.2"
mosek = ">=10.1.31"
scs = ">=3.2.4.post1"
numpy = "^1.26.4"
scipy = "^1.13.1"

[tool.poetry.group.notebook.dependencies]
notebook = ">=7.1.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"