blob: ca3184f88066036609bb719524359fc9cde957b2 [file] [log] [blame]
Jon Wayne Parrott377f2932016-10-04 10:20:36 -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 find_packages
16from setuptools import setup
17
18
19DEPENDENCIES = (
20 'pyasn1>=0.1.7',
21 'pyasn1-modules>=0.0.5',
22 'rsa>=3.1.4',
23 'six>=1.9.0',
24)
25
26
27with open('README.rst', 'r') as fh:
28 long_description = fh.read()
29
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070030setup(
31 name='google-auth',
Jon Wayne Parrott90c1c1b2016-12-14 12:43:30 -080032 version='0.5.0',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070033 author='Google Cloud Platform',
34 author_email='jonwayne+google-auth@google.com',
35 description='Google Authentication Library',
36 long_description=long_description,
Jon Wayne Parrott246df812016-10-21 14:31:06 -070037 url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
Jon Wayne Parrott447c5be2016-10-25 09:32:25 -070038 packages=find_packages(exclude=('tests', 'system_tests')),
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070039 namespace_packages=('google',),
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',
Jon Wayne Parrottac3f9752016-10-28 13:02:14 -070049 'Development Status :: 4 - Beta',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070050 '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)