summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 6d787278b8ffd52dc1a5d27f0ff8f6fd096e884a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tool.poetry]
name = "polymatrix"
version = "0.0.1"
description = 'A library to represent and manipulate multivariate polynomials'
authors = [
  "Michael Schneeberger <michael.schneeberger@fhnw.ch>",
]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10"
sympy = ">=1.12"
numpy = ">=1.26.4"
dataclass-abc = ">=0.0.8"
scipy = "^1.12.0"


[tool.poetry.group.notebook.dependencies]
marimo = "^0.2.5"

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