From 4f99a1ff189c1f614c92c3cd43ff682e4e1e7c8b Mon Sep 17 00:00:00 2001 From: Simon Segerblom Rex Date: Tue, 21 May 2019 10:42:25 +0200 Subject: [PATCH] Fix classifiers in setup.py --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e8f9b52..adf1e12 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,13 @@ setuptools.setup( 'pikepdf', ], classifiers=[ - 'Python :: 3' + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3 :: Only', ], )