blob: 97affcd5778320065bd0ef844124619c61a2acdc [file] [log] [blame]
#!/usr/bin/env python
"""Setup specs for packaging, distributing, and installing Pipeline lib."""
import setuptools
# To debug, set DISTUTILS_DEBUG env var to anything.
setuptools.setup(
name="GoogleAppEnginePipeline",
version="1.9.21.1",
packages=setuptools.find_packages(),
author="Google App Engine",
author_email="[email protected]",
keywords="google app engine pipeline data processing",
url="https://github.com/GoogleCloudPlatform/appengine-pipelines",
license="Apache License 2.0",
description=("Enable asynchronous pipeline style data processing on "
"App Engine"),
zip_safe=True,
include_package_data=True,
# Exclude these files from installation.
exclude_package_data={"": ["README"]},
install_requires=[
"GoogleAppEngineCloudStorageClient >= 1.9.21",
],
extras_require={'python2.5': ["simplejson >= 3.6.5"]}
)