From 8016fb621715ba5a2c02f5bd73f16c0932b19f51 Mon Sep 17 00:00:00 2001 From: Hiroshi Miura Date: Sun, 24 Mar 2019 12:39:35 +0900 Subject: [PATCH] setup.py: add classifiers Signed-off-by: Hiroshi Miura --- setup.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2270ca2..2d27927 100644 --- a/setup.py +++ b/setup.py @@ -29,5 +29,19 @@ setup(name='aqtinstall', 'flake8' ] }, - scripts=["bin/aqt"] + scripts=["bin/aqt"], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Environment :: X11 Applications :: Qt', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Programming Language :: C++', + 'Topic :: Software Development', + 'Topic :: Software Development :: Libraries', + ], )