diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-12-31 17:07:27 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-12-31 17:07:27 +0100 |
commit | 6923f117bc20fffcb0256e7cda35534ee48b058f (patch) | |
tree | 0ce1c707929d9d8a0840a79ca607cd75fa89a7e1 /setup.py | |
parent | 928865ef3533401163192faa0889019bc6b0cd2a (diff) | |
download | gitlab-6923f117bc20fffcb0256e7cda35534ee48b058f.tar.gz |
Add supported python versions in setup.py
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -34,6 +34,13 @@ setup(name='python-gitlab', 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'Natural Language :: English', 'Operating System :: POSIX', - 'Operating System :: Microsoft :: Windows' + 'Operating System :: Microsoft :: Windows', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ] ) |