From 0d5b1b192a1460ff1b9bc441b80ed61f158410d3 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Mon, 7 Oct 2024 22:10:25 -0400 Subject: [PATCH] Add classifiers in setup.py --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae1f58015..dc7ad23a9 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,13 @@ 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 :: Science/Research', + 'Topic :: Scientific/Engineering' + ], python_requires=">=3.10", install_requires=read_requirements(), include_package_data=True,