-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (36 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Licensed under the MIT license:
# http://www.opensource.org/licenses/MIT-license
# Copyright (c) 2015, Olivier Poitrey <[email protected]>
from setuptools import setup
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='gcs-oauth2-boto-env-plugin',
version='0.1.2',
description='Google Storage auth2 plugin with support for passing service key via environment',
long_description=readme,
keywords='oauth2 gcs s3 boto plugin docker',
author='Olivier Poitrey',
author_email='[email protected]',
url='https://github.com/rs/gcs-oauth2-boto-env-plugin',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
],
py_modules=['gcs_oauth2_boto_env_plugin'],
install_requires=[
'gcs_oauth2_boto_plugin==1.8',
# https://github.com/google/oauth2client/issues/401
'oauth2client==1.5.2',
],
)