blob: 9ec7bfed4135c911f6e1dfbcdedfeab36353b5da [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 = (
22 'pyasn1>=0.1.7',
23 'pyasn1-modules>=0.0.5',
24 'rsa>=3.1.4',
25 'six>=1.9.0',
Jon Wayne Parrottcfbfd252017-03-28 13:03:11 -070026 'cachetools>=2.0.0',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070027)
28
29
Jon Wayne Parrott01906602017-03-22 10:10:32 -070030with io.open('README.rst', 'r') as fh:
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070031 long_description = fh.read()
32
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070033setup(
34 name='google-auth',
Jon Wayne Parrottca1eabc2017-03-29 13:24:57 -070035 version='0.10.0',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070036 author='Google Cloud Platform',
37 author_email='jonwayne+google-auth@google.com',
38 description='Google Authentication Library',
39 long_description=long_description,
Jon Wayne Parrott246df812016-10-21 14:31:06 -070040 url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
Jon Wayne Parrott7828c1c2017-03-16 13:16:59 -070041 packages=find_packages(exclude=('tests*', 'system_tests*')),
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070042 namespace_packages=('google',),
43 install_requires=DEPENDENCIES,
44 license='Apache 2.0',
45 keywords='google auth oauth client',
46 classifiers=(
47 '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',
Jon Wayne Parrottac3f9752016-10-28 13:02:14 -070053 'Development Status :: 4 - Beta',
Jon Wayne Parrott377f2932016-10-04 10:20:36 -070054 'Intended Audience :: Developers',
55 'License :: OSI Approved :: Apache Software License',
56 'Operating System :: POSIX',
57 'Operating System :: Microsoft :: Windows',
58 'Operating System :: MacOS :: MacOS X',
59 'Operating System :: OS Independent',
60 'Topic :: Internet :: WWW/HTTP',
61 ),
62)