From 7440fc87630af3deeb971a8af11c1fad944ab709 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Sun, 26 Jan 2025 20:15:07 -0300 Subject: [PATCH] fix: update tool.setuptools --- .github/workflows/build_for_pypi.yml | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_for_pypi.yml b/.github/workflows/build_for_pypi.yml index af3779fb..99ce9a71 100644 --- a/.github/workflows/build_for_pypi.yml +++ b/.github/workflows/build_for_pypi.yml @@ -67,9 +67,9 @@ jobs: steps: - name: Download all the dists uses: actions/download-artifact@v4 - - name: Display all files in dist/ + - name: Display all files run: | - ls -al dist/ + ls -al - name: Sign the dists with Sigstore uses: sigstore/gh-action-sigstore-python@v3.0.0 with: diff --git a/pyproject.toml b/pyproject.toml index 53526018..7cb77644 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,5 +30,5 @@ version = "10.0.1" [project.scripts] codecovcli = "codecov_cli.main:run" -[tool.setuptools.packages.find] -include = ["codecov-cli*"] +[tool.setuptools] +packages = ["codecov_cli"]