From d4762b270464c83642807d0604e41f8a45c66334 Mon Sep 17 00:00:00 2001 From: Daniel Neilson <53624638+ddneilson@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:44:42 -0500 Subject: [PATCH] chore: set the package author to AWS Summary: The package author is "Amazon Web Services", so we should set the field in the pyproject.toml so that it shows up with that author on PyPI.org when published. Signed-off-by: Daniel Neilson <53624638+ddneilson@users.noreply.github.com> --- README.md | 2 ++ pyproject.toml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index cb02beb9..74ff74c3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # AWS Deadline Cloud Worker Agent [![pypi](https://img.shields.io/pypi/v/deadline-cloud-worker-agent.svg)](https://pypi.python.org/pypi/deadline-cloud-worker-agent) +[![python](https://img.shields.io/pypi/pyversions/deadline-cloud-worker-agent.svg?style=flat)](https://pypi.python.org/pypi/deadline-cloud-worker-agent) +[![license](https://img.shields.io/pypi/l/deadline-cloud-worker-agent.svg?style=flat)](https://github.com/aws-deadline/deadline-cloud-worker-agent/blob/mainline/LICENSE) The AWS Deadline Cloud worker agent can be used to run a worker in an [AWS Deadline Cloud][deadline-cloud] fleet. This includes managing the life-cycle of a worker and diff --git a/pyproject.toml b/pyproject.toml index 678795e5..9ebef460 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,9 @@ build-backend = "hatchling.build" [project] name = "deadline-cloud-worker-agent" +authors = [ + {name = "Amazon Web Services"}, +] dynamic = ["version"] dependencies = [ "requests ~= 2.31",