From 47fd0d1f03ae23be62c84ae52b5d0b4d13c2a530 Mon Sep 17 00:00:00 2001 From: "brian.quinlan" Date: Sat, 13 Nov 2010 10:08:47 +0000 Subject: Fix incorrect python version --- python2/setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python2/setup.py b/python2/setup.py index fcd05f2..897dc86 100755 --- a/python2/setup.py +++ b/python2/setup.py @@ -1,10 +1,10 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python from distutils.core import setup -setup(name='futures3', +setup(name='futures', version='1.0', - description='Java-style futures implementation in Python 3.x', + description='Java-style futures implementation in Python 2.x', author='Brian Quinlan', author_email='brian@sweetapp.com', url='http://code.google.com/p/pythonfutures', @@ -14,5 +14,5 @@ setup(name='futures3', classifiers=['License :: OSI Approved :: BSD License', 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', - 'Programming Language :: Python :: 3'] + 'Programming Language :: Python :: 2'] ) -- cgit v1.2.1