-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
setup.py
51 lines (44 loc) · 1.49 KB
/
setup.py
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
49
50
51
import sys
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
if sys.version_info <= (2, 4):
error = 'Requires Python Version 2.5 or above... exiting.'
print >> sys.stderr, error
sys.exit(1)
requirements = [
'httplib2',
'oauth2client',
'protobuf',
'pycrypto',
'pyopenssl',
'pytz',
]
setup(name='gcloud',
version='0.02.2',
description='API Client library for Google Cloud',
author='JJ Geewax',
author_email='[email protected]',
scripts=[],
url='https://github.com/GoogleCloudPlatform/gcloud-python',
packages=find_packages(),
license='Apache 2.0',
platforms='Posix; MacOS X; Windows',
package_data={'': ['gcloud/datastore/demo.key',
'gcloud/storage/demo.key']},
include_package_data=True,
zip_safe=False,
setup_requires=requirements,
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.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
]
)