From 99d22e8206d7893f0cf12758077d7cd8ce70a965 Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Thu, 13 Jun 2024 14:33:29 -0300 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ffeb793 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[tool.poetry] +name = "vec2pg" +version = "2024.06.0" +description = "vec2pg" +authors = [] + +[tool.poetry.dependencies] +python = "^3.10" +typer-slim = "^0.12.3" +pinecone-client = "^4.1.0" + +[tool.poetry.dev-dependencies] +pre-commit = "^3.5.0" +black = "^24.4" +pytest = "^8.1.1" +flake8 = "^5.0.4" +isort = "^5.10.1" +pytest-cov = "^5.0.0" +commitizen = "^3.22.0" +python-semantic-release = "^9.4.2" +python-dotenv = "^1.0.1" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"