blob: 110cce8475063e9e56644321be68ccd91367b21f [file] [log] [blame]
Jon Wayne Parrott90db9f22016-10-21 15:05:37 -07001# Copyright 2014 Google Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from setuptools import setup
16
17
18DEPENDENCIES = (
19 'pyasn1>=0.1.7',
20 'pyasn1-modules>=0.0.5',
21 'rsa>=3.1.4',
22 'six>=1.9.0',
23 'google-auth'
24)
25
26
27with open('README.rst', 'r') as fh:
28 long_description = fh.read()
29
30
31setup(
32 name='google-auth-httplib2',
33 version='0.0.1',
34 author='Google Cloud Platform',
35 author_email='jonwayne+google-auth@google.com',
36 description='Google Authentication Library',
37 long_description=long_description,
38 url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
39 py_modules=['google_auth_httplib2'],
40 install_requires=DEPENDENCIES,
41 license='Apache 2.0',
42 keywords='google auth oauth client',
43 classifiers=(
44 'Programming Language :: Python :: 2',
45 'Programming Language :: Python :: 2.7',
46 'Programming Language :: Python :: 3',
47 'Programming Language :: Python :: 3.4',
48 'Programming Language :: Python :: 3.5',
49 'Development Status :: 3 - Alpha',
50 'Intended Audience :: Developers',
51 'License :: OSI Approved :: Apache Software License',
52 'Operating System :: POSIX',
53 'Operating System :: Microsoft :: Windows',
54 'Operating System :: MacOS :: MacOS X',
55 'Operating System :: OS Independent',
56 'Topic :: Internet :: WWW/HTTP',
57 ),
58)