From 4e0fc15c5bde12ae56c219d97bd244187780240b Mon Sep 17 00:00:00 2001 From: loydbanks Date: Thu, 31 Oct 2024 12:00:16 +0000 Subject: [PATCH] fix: chnaged tool.setup for pyproject --- .github/workflows/codeartifact-deploy.yml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeartifact-deploy.yml b/.github/workflows/codeartifact-deploy.yml index 81b57c79c..17ffa5bfc 100644 --- a/.github/workflows/codeartifact-deploy.yml +++ b/.github/workflows/codeartifact-deploy.yml @@ -63,4 +63,4 @@ jobs: export TWINE_PASSWORD=`aws codeartifact get-authorization-token --domain clearlyenergy --domain-owner 870817328084 --query authorizationToken --output text` export TWINE_REPOSITORY_URL=`aws codeartifact get-repository-endpoint --domain clearlyenergy --domain-owner 870817328084 --repository django-helpdesk --format pypi --query repositoryEndpoint --output text` python3 -m build - twine upload dist/* \ No newline at end of file + twine upload dist/* diff --git a/pyproject.toml b/pyproject.toml index f67f19814..2652b1138 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,13 +2,13 @@ requires = ["setuptools"] build-backend = "setuptools.build_meta" -[tool.setuptools] -packages = ["helpdesk"] +[tool.setuptools.packages.find] +include = ["helpdesk*"] [project] name = "beam-django-helpdesk" version = "0.3.0b3" -description = "Helpdesk in Django" +description = "Django-powered ticket tracker for your helpdesk" authors = [{name = "Ross Poulton", email = "ross@rossp.org"}] maintainers = [{name = "Garret Wassermann", email = "gwasser@gmail.com"}] license = {text = "BSD-3-Clause"}