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.
This commit is contained in:
Rodolphe Breard 2017-12-16 23:48:02 +01:00
parent 6dce674e2b
commit a05c28bbd0

View file

@ -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']),
],