setup.py 969 B

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