blob: b2eb5984df7339c199e2e6f4ae55dd32f3a1a42c [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
Jon Wayne Parrott01906602017-03-22 10:10:32 -070015import io
16
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070017from setuptools import find_packages
18from setuptools import setup
19
20
21DEPENDENCIES = (
Jon Wayne Parrott945c3572017-12-15 10:00:22 -080022 'pyasn1-modules>=0.2.1',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070023 'rsa>=3.1.4',
24 'six>=1.9.0',
Jon Wayne Parrottcfbfd252017-03-28 13:03:11 -070025 'cachetools>=2.0.0',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070026)
27
28
Jon Wayne Parrott01906602017-03-22 10:10:32 -070029with io.open('README.rst', 'r') as fh:
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070030 long_description = fh.read()
31
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070032setup(
33 name='google-auth',
Bu Sun Kim08272d82019-02-19 13:08:13 -080034 version='1.6.3',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070035 author='Google Cloud Platform',
36 author_email='jonwayne+google-auth@google.com',
37 description='Google Authentication Library',
38 long_description=long_description,
Jon Wayne Parrott246df812016-10-21 14:31:06 -070039 url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
Jon Wayne Parrott7828c1c2017-03-16 13:16:59 -070040 packages=find_packages(exclude=('tests*', 'system_tests*')),
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070041 namespace_packages=('google',),
42 install_requires=DEPENDENCIES,
Christopher Wilcox3f736942018-12-14 12:24:38 -080043 python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070044 license='Apache 2.0',
45 keywords='google auth oauth client',
Thilo Maurer4997be12018-08-01 23:33:08 +020046 classifiers=[
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070047 'Programming Language :: Python :: 2',
48 'Programming Language :: Python :: 2.7',
49 'Programming Language :: Python :: 3',
50 'Programming Language :: Python :: 3.4',
51 'Programming Language :: Python :: 3.5',
Jon Wayne Parrott06a27e82017-03-22 12:59:41 -070052 'Programming Language :: Python :: 3.6',
Christopher Wilcox3f736942018-12-14 12:24:38 -080053 'Programming Language :: Python :: 3.7',
Jon Wayne Parrott709953d2017-04-17 13:13:13 -070054 'Development Status :: 5 - Production/Stable',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070055 'Intended Audience :: Developers',
56 'License :: OSI Approved :: Apache Software License',
57 'Operating System :: POSIX',
58 'Operating System :: Microsoft :: Windows',
59 'Operating System :: MacOS :: MacOS X',
60 'Operating System :: OS Independent',
61 'Topic :: Internet :: WWW/HTTP',
Thilo Maurer4997be12018-08-01 23:33:08 +020062 ],
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070063)