From ec8ad635d4e740351b98402642cf2d202fe5398c Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Thu, 31 Jul 2025 11:52:21 +0200 Subject: [PATCH] (minor) Classifiers and keywords in project file --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fb18a4899..21c23d64d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,6 +3,18 @@ name = "lightspeed-stack" dynamic = ["version"] description = "LLM tooling stack" authors = [] +classifiers = [ + "Development Status :: 4 - Beta", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Software Development", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "License :: OSI Approved :: Apache Software License", +] +keywords = [ + "LLM", + "RAG" +] requires-python = ">=3.12,<3.14" readme = "README.md" license = {file = "LICENSE"}