From b66fd37d2cdf99cfe6afc2e841ad54f1a3e3ea15 Mon Sep 17 00:00:00 2001 From: Darren P Meyer Date: Thu, 2 Nov 2023 14:24:42 -0500 Subject: [PATCH] add readme and setuptools to build --- .github/workflows/python-publish.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index df7dde7..f8468b2 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -30,7 +30,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install build + pip install build setuptools - name: Build package run: python -m build - name: Publish package diff --git a/pyproject.toml b/pyproject.toml index f53676e..2247eea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,7 @@ build-backend = "setuptools.build_meta" [project] dynamic = ["version"] name = "endorlabs-atst" +readme = "README.md" authors = [{name = "Darren Meyer", email = 'darren@endor.ai'}] description = "Endor Labs Automated Tool for Scanning Things (ATST) -- a tool to help deploy and manage Endor Labs in CI pipelines" requires-python = ">=3.9"