summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 74c6c5912133b40500ab68de16c3c186c525a1e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[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"
sphinx = "^7.3.7"
python-docs-theme = "^2024.4"


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

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