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:
parent
6dce674e2b
commit
a05c28bbd0
1 changed files with 8 additions and 0 deletions
8
setup.py
8
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']),
|
||||
],
|
||||
|
|
Reference in a new issue