diff --git a/README.md b/README.md index 3ad2026..d354190 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This package contains an implementation of the Vercel AI SDK's "Data Stream Protocol". -*Note: This is not an official package by Vercel, but rather a community-driven implementation of the protocol for use with python frameworks. All credit for the protocol design and specification belongs to Vercel. This implementation exists solely to empower developers with additional framework options, with no intention of competing with Vercel's offerings.* +*Note: This is not an official package by Vercel, but rather a community-driven implementation of the protocol for use with python frameworks, it is not affiliated nor endorsed by Vercel. All credit for the protocol design and specification belongs to Vercel. This implementation exists solely to empower developers with additional framework options, with no intention of competing with Vercel's offerings.* ## Data Stream Protocol diff --git a/pyproject.toml b/pyproject.toml index febef75..cf50ebb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,21 @@ description = "A Python implementation of the Vercel AI Data Stream protocol" readme = "README.md" authors = ["Elementary"] license = "Apache-2.0" -keywords = ["ai", "data", "stream", "vercel"] +keywords = ["ai", "data", "stream", "vercel", "langchain", "fastapi", "agent"] packages = [{include = "ai_datastream"}] +classifiers = [ + "License :: OSI Approved :: Apache Software License", + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Typing :: Typed" +] [tool.poetry.dependencies] python = ">=3.9,<4.0"