From 48d0d2001eaa7b2cb82bef603a2921736c04b657 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Tue, 8 Oct 2024 09:55:16 -0400 Subject: [PATCH] Add classifiers in setup.py (#217) * Add classifiers in setup.py * Update setup.py * Update setup.py --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae1f58015..4db636872 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,16 @@ setup( long_description_content_type="text/markdown", url="https://github.com/meta-llama/llama-stack", packages=find_packages(), - classifiers=[], + classifiers=[ + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Intended Audience :: Science/Research", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Scientific/Engineering :: Information Analysis", + ], python_requires=">=3.10", install_requires=read_requirements(), include_package_data=True,