From 181a6014de7a0f61c61d51688867ba3e8ee20474 Mon Sep 17 00:00:00 2001 From: awest1339 Date: Thu, 24 Aug 2023 14:30:11 -0600 Subject: [PATCH] Create pyproject.yaml --- pyproject.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.yaml diff --git a/pyproject.yaml b/pyproject.yaml new file mode 100644 index 0000000..6c03027 --- /dev/null +++ b/pyproject.yaml @@ -0,0 +1,20 @@ +[tool.poetry] +name = "cbn-tool" +version = "0.1.0" +description = "Command line tool to interact with Chronicle's Config Based Normalizer APIs." +authors = ["Krishna Suravaram "] +license = "Apache-2.0" +readme = "README.md" +packages = [{include = "cbn_cli.py"}] + +[tool.poetry.dependencies] +python = "^3.9" +google-api-python-client = ">=1.11.0" +parameterized = ">=0.7.4" + +[tool.poetry.scripts] +cbn_cli = "cbn_cli:main" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"