From e59ad946c45f9b2d6cbeb3d1df94f4ebb8a4a107 Mon Sep 17 00:00:00 2001 From: "brian.quinlan" Date: Thu, 11 Jun 2009 20:03:23 +0000 Subject: Added setup scripts. --- python2/setup.py | 18 ++++++++++++++++++ python3/setup.py | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 python2/setup.py create mode 100755 python3/setup.py diff --git a/python2/setup.py b/python2/setup.py new file mode 100755 index 0000000..686fd29 --- /dev/null +++ b/python2/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python + +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'] + ) diff --git a/python3/setup.py b/python3/setup.py new file mode 100755 index 0000000..e7cff77 --- /dev/null +++ b/python3/setup.py @@ -0,0 +1,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'] + ) -- cgit v1.2.1