From a05c28bbd03ce160e9f7a0144b0530735c9634fb Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sat, 16 Dec 2017 23:48:02 +0100 Subject: [PATCH] Specify compatible Python versions Now that travis-ci is integrated, Py-LibreAuth is tested against various Python versions. It is therefore possible to publicly display which ones are compatible. --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index fc02be3..611a5f5 100644 --- a/setup.py +++ b/setup.py @@ -20,11 +20,19 @@ setup( classifiers=[ 'Development Status :: 1 - Planning', 'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)', + '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', 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Security', ], keywords='authentication password oath hotp totp', packages=find_packages(exclude=['contrib', 'docs', 'tests']), + python_requires='~=3.3', data_files=[ ('license', ['LICENSE-EN.txt', 'LICENSE-FR.txt']), ],