summaryrefslogtreecommitdiff
path: root/python2/setup.py
blob: 378470ff47327094d6292cf365af13bd8901449d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

from distutils.core import setup

setup(name='futures',
      version='1.0',
      description='Java-style futures implementation in Python',
      author='Brian Quinlan',
      author_email='brian@sweetapp.com',
      url='http://code.google.com/p/pythonfutures',
      download_url='http://pypi.python.org/pypi/futures3/',
      packages=['futures'],
      license='BSD',
      classifiers=['License :: OSI Approved :: BSD License',
                   'Development Status :: 5 - Production/Stable',
                   'Intended Audience :: Developers',
                   'Programming Language :: Python :: 2']
      )