Uh oh!
There was an error while loading. Please reload this page.
forked from lucemia/gcloud-python
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
48 lines (41 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (41 loc) · 1.17 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
importsys
try:
fromsetuptoolsimportsetup, find_packages
exceptImportError:
fromdistutils.coreimportsetup, find_packages
ifsys.version_info<= (2, 5):
raiseException('Requires Python Version 2.6 or above... exiting.')
REQUIREMENTS= [
'httplib2',
'oauth2client',
'protobuf >= 2.5.0',
'pycrypto',
'pyopenssl',
'pytz',
'six',
]
setup(
name='gcloud',
version='0.3.0',
description='API Client library for Google Cloud',
author='JJ Geewax',
author_email='jj@geewax.org',
scripts=[],
url='https://github.com/GoogleCloudPlatform/gcloud-python',
packages=find_packages(),
license='Apache 2.0',
platforms='Posix; MacOS X; Windows',
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
]
)