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

from distutils.core import setup

setup(name='futures',
      version='0.1',
      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/futures/',
      packages=['futures'],
      license='BSD',
      classifiers=['License :: OSI Approved :: BSD License',
                   'Development Status :: 3 - Alpha',
                   'Intended Audience :: Developers',
                   'Programming Language :: Python :: 3']
      )