diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..03e944a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "mdpoly" +version = "0.1.0" +description = "Multivariate Polynomials" +authors = ["Nao Pross <np@0hm.ch>"] +license = "AGPL3" +readme = "README.md" + +[tool.poetry.dependencies] +python = ">=3.10,<4.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |