Update the version number and use different targets for python 2.x and 3.x
This commit is contained in:
@@ -3,16 +3,16 @@
|
|||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='futures',
|
setup(name='futures',
|
||||||
version='0.2',
|
version='1.0',
|
||||||
description='Java-style futures implementation in Python',
|
description='Java-style futures implementation in Python',
|
||||||
author='Brian Quinlan',
|
author='Brian Quinlan',
|
||||||
author_email='brian@sweetapp.com',
|
author_email='brian@sweetapp.com',
|
||||||
url='http://code.google.com/p/pythonfutures',
|
url='http://code.google.com/p/pythonfutures',
|
||||||
download_url='http://pypi.python.org/pypi/futures/',
|
download_url='http://pypi.python.org/pypi/futures3/',
|
||||||
packages=['futures'],
|
packages=['futures'],
|
||||||
license='BSD',
|
license='BSD',
|
||||||
classifiers=['License :: OSI Approved :: BSD License',
|
classifiers=['License :: OSI Approved :: BSD License',
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Programming Language :: Python :: 2']
|
'Programming Language :: Python :: 2']
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -2,17 +2,17 @@
|
|||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='futures',
|
setup(name='futures3',
|
||||||
version='0.2',
|
version='1.0',
|
||||||
description='Java-style futures implementation in Python',
|
description='Java-style futures implementation in Python 3.x',
|
||||||
author='Brian Quinlan',
|
author='Brian Quinlan',
|
||||||
author_email='brian@sweetapp.com',
|
author_email='brian@sweetapp.com',
|
||||||
url='http://code.google.com/p/pythonfutures',
|
url='http://code.google.com/p/pythonfutures',
|
||||||
download_url='http://pypi.python.org/pypi/futures/',
|
download_url='http://pypi.python.org/pypi/futures3/',
|
||||||
packages=['futures'],
|
packages=['futures'],
|
||||||
license='BSD',
|
license='BSD',
|
||||||
classifiers=['License :: OSI Approved :: BSD License',
|
classifiers=['License :: OSI Approved :: BSD License',
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'Programming Language :: Python :: 3']
|
'Programming Language :: Python :: 3']
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user