From f757e01d42d757b4cd8ac1f33162bbae6628e864 Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:37:34 -0800 Subject: [PATCH] Create README for PyPi (#154) # PR Description The `arcade/pyproject.toml` wasn't able to find the `README.md` file because it must be a subpath of `arcade-ai/arcade`. I created a simple README for PyPi --- arcade/README.md | 13 +++++++++++++ arcade/pyproject.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 arcade/README.md diff --git a/arcade/README.md b/arcade/README.md new file mode 100644 index 00000000..0e92d9c4 --- /dev/null +++ b/arcade/README.md @@ -0,0 +1,13 @@ +# Arcade AI Python SDK and CLI + +[Arcade AI](https://arcade-ai.com?ref=pypi) provides developer-focused tooling and APIs designed to improve the capabilities of LLM applications and agents. + +By removing the complexity of connecting agentic applications with your users' data and services, Arcade AI enables developers to focus on building their agentic applications. + +To learn more, check out our +- [Website](https://arcade-ai.com?ref=pypi) +- [GitHub](https://github.com/ArcadeAI/arcade-ai) +- [Documentation](https://docs.arcade-ai.com) +- [Discord](https://discord.com/invite/GUZEMpEZ9p) +- [X](https://x.com/TryArcade) +- [LinkedIn](https://www.linkedin.com/company/arcade-ai) diff --git a/arcade/pyproject.toml b/arcade/pyproject.toml index b84b60f1..b7a8196f 100644 --- a/arcade/pyproject.toml +++ b/arcade/pyproject.toml @@ -2,7 +2,7 @@ name = "arcade-ai" version = "0.1.1" description = "Arcade AI Python SDK and CLI" -readme = "../README.md" +readme = "README.md" packages = [ {include="arcade", from="."} ]