From 10b2e89c6d02dd396c951d652af437687e4db331 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 22 Feb 2024 15:56:17 +0100 Subject: Add pyproject.toml with Poetry --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..def9c86 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "sumofsquares" +version = "0.0.1" +description = "Tools for Sum of Square optimization" +authors = ["Michael Schneeberger "] +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" -- cgit v1.2.1