From 2883c9e8e35c8d50d387ce1bd813381b3749027e Mon Sep 17 00:00:00 2001 From: Mandlin Sarah Date: Sun, 1 Sep 2024 19:17:50 -0700 Subject: [PATCH] Add classifiers for better package categorization --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 644b85a..7102a72 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ from setuptools import setup - setup( name="aura-sr", version="0.0.4", @@ -16,4 +15,14 @@ ], long_description=open("README.md").read(), long_description_content_type="text/markdown", + classifiers=[ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + ], )