From 0dd1adb4f06f45d554d12083b312fcdb6f6be8d1 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sat, 23 Mar 2013 13:07:00 +0100 Subject: [PATCH] List all versions of Python in setup.py --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bc5b0445..e0f87841 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,10 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright 2012 Vincent Jacques +# Copyright 2012, 2013 Vincent Jacques # vincent@vincent-jacques.net -# This file is part of PyGithub. http://vincent-jacques.net/PyGithub +# This file is part of PyGithub. http://jacquev6.github.com/PyGithub/ # PyGithub is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License # as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. @@ -73,7 +73,13 @@ if __name__ == "__main__": "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.5", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", "Topic :: Software Development", ], test_suite="github.tests.AllTests",