From 1da1231e5b98ad5e5c95f4507bb4faebb151456a Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Wed, 13 Nov 2024 11:00:44 -0800 Subject: [PATCH] Add readme and description to PyPi Project Page (#153) # PR Description Currently the [Arcade AI PyPi Page](https://pypi.org/project/arcade-ai/) doesn't have a description. This PR adds that. --- arcade/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arcade/pyproject.toml b/arcade/pyproject.toml index 72b4d3e5..b84b60f1 100644 --- a/arcade/pyproject.toml +++ b/arcade/pyproject.toml @@ -1,7 +1,8 @@ [tool.poetry] name = "arcade-ai" version = "0.1.1" -description = "" +description = "Arcade AI Python SDK and CLI" +readme = "../README.md" packages = [ {include="arcade", from="."} ]