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