blob: 249bb29547f4d91eb31102e2f917966cad7ad5a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[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"
[tool.poetry.group.notebook.dependencies]
notebook = ">=7.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|