From 22d51ac33bc7ddf96526fe8023bcfa9abcabf067 Mon Sep 17 00:00:00 2001 From: Boris Glimcher <36732377+glimchb@users.noreply.github.com> Date: Sun, 24 Sep 2023 00:43:05 -0400 Subject: [PATCH] ci: add example pyproject.toml Signed-off-by: Boris Glimcher <36732377+glimchb@users.noreply.github.com> Signed-off-by: Boris Glimcher --- Makefile | 5 +++++ pyproject.toml | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Makefile create mode 100644 pyproject.toml diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..84af9c6 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright (c) 2022 Dell Inc, or its subsidiaries. +.PHONY: lint +lint: + echo example diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0d73790 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[tool.poetry] +name = "opi" +version = "0.0.1" +description = "just an example" +authors = ["OPI Dev "] +license = "Apache-2.0" +readme = "README.md" + +[tool.poetry.group.test.dependencies] +pytest = ">=1" +pytest-cov = ">=1"