From 8a887623f37b4a7ce25d10b183a7ff5665845ae5 Mon Sep 17 00:00:00 2001 From: "Sergey.Titov" Date: Fri, 23 Feb 2024 13:36:32 +0200 Subject: [PATCH] Added poetry install with correct include --- pyproject.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..27a313c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,23 @@ +[tool.poetry] +name = "mxeval" +version = "1.0.0" +description = "" +authors = ["AWS AI Labs"] +license = "Apache License 2.0" +readme = "README.md" +include = [ + { path = "data", format = ["sdist", "wheel"] } +] + +[tool.poetry.dependencies] +python = "^3.11" +tqdm = "^4.66.2" +fire = "^0.5.0" +numpy = "^1.26.4" + + + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"