# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import setuptools

setuptools.setup(
    name="jupyterhub-gcp-iap-authenticator",
    python_requires='>=3.9.0',
    version="0.2.0",
    author="Aaron Liang",
    author_email="aaronliang@google.com",
    description="JupyterHub authenticator for Cloud IAP with JWT",
    long_description="long description here",
    long_description_content_type="text/markdown",
    url="https://github.com/chiayi/ai-on-gke/tree/main/ray-on-gke/user/jupyterhub/auth",
    packages=['gcpiapjwtauthenticator'],
    license='Apache 2.0',
    install_requires=[
        "jupyterhub>=4.1.0",
        "tornado>=6.3.3",
        'oauthenticator>=0.9.0',
        'pyjwt>=2.7.0',
        "google-api-python-client",
        "google-auth",
        "google-auth-oauthlib",
        "google-cloud",
    ]
)