forked from GoogleCloudPlatform/appengine-pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 978 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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.22.1+nt.1",
packages=setuptools.find_packages(
exclude=['test', 'demo']
),
author="Google App Engine",
author_email="app-engine-pipeline-api@googlegroups.com",
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.22",
],
extras_require={'python2.5': ["simplejson >= 3.6.5"]}
)