From 3fdc2f4f07186486e2f8204db5a229274f14a1e8 Mon Sep 17 00:00:00 2001 From: Josh Wilson Date: Sat, 19 Jan 2019 09:14:13 -0800 Subject: [PATCH] Add classifier strings to setup.py --- README.rst | 8 ++++---- setup.py | 21 ++++++++++++++++++++- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 0d8e941..06f978b 100644 --- a/README.rst +++ b/README.rst @@ -129,20 +129,20 @@ credentials(username and password) encoded using ``base64`` and a prefix (typica Implements a Simple Token Based Authentication Scheme where HTTP ``Authorization`` header contains a prefix (typically Token) followed by an `API Token` -+ **JWT Authentication** ++ **JWT Authentication (Python 2.7, 3.4+)** Token based authentication using the `JSON Web Token standard `__ -If you wish to use this backend, be sure to add the optional dependency to your requirements: +If you wish to use this backend, be sure to add the optional dependency to your requirements (See Python `"extras" `__): .. code:: text falcon-auth[backend-jwt] -+ **Hawk Authentication** ++ **Hawk Authentication (Python 2.6+, 3.4+)** Token based authentication using the `Hawk "Holder-Of-Key Authentication Scheme" `__ -If you wish to use this backend, be sure to add the optional dependency to your requirements: +If you wish to use this backend, be sure to add the optional dependency to your requirements (See Python `"extras" `__): .. code:: text diff --git a/setup.py b/setup.py index 0ebe9d7..3a66d4d 100644 --- a/setup.py +++ b/setup.py @@ -66,5 +66,24 @@ 'python-coveralls>=2.9.1,<3.0.0' ], url='https://github.com/loanzen/falcon-auth', - version=version + version=version, + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Environment :: Web Environment", + "Framework :: Falcon", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware", + "Topic :: Software Development :: Libraries :: Python Modules", + ] )