1#!/usr/bin/env python
2
3extras = {}
4try:
5    from setuptools import setup
6    extras['zip_safe'] = False
7except ImportError:
8    from distutils.core import setup
9
10setup(name='futures',
11      version='3.0.2',
12      description='Backport of the concurrent.futures package from Python 3.2',
13      author='Brian Quinlan',
14      author_email='brian@sweetapp.com',
15      maintainer='Alex Gronholm',
16      maintainer_email='alex.gronholm+pypi@nextday.fi',
17      url='https://github.com/agronholm/pythonfutures',
18      packages=['concurrent', 'concurrent.futures'],
19      license='BSD',
20      classifiers=['License :: OSI Approved :: BSD License',
21                   'Development Status :: 5 - Production/Stable',
22                   'Intended Audience :: Developers',
23                   'Programming Language :: Python :: 2.6',
24                   'Programming Language :: Python :: 2.7',
25                   'Programming Language :: Python :: 2 :: Only'],
26      **extras
27      )
28