blob: cb9203d7991a87f9a57c795435702fea8a3e7eee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[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]
python = ">=3.10"
polymatrix = {git = "https://gitlab.ethz.ch/npross/polymatrix.git"}
python = ">=3.10,<3.13"
cvxopt = "^1.3.2"
mosek = "^10.1.31"
[tool.poetry.group.notebook.dependencies]
marimo = "^0.2.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|