custos-client-sdks/custos_jupyterhub_authenticator/setup.py (23 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You 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 # # http://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 os from setuptools import setup, find_packages def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as f: return f.read() from pathlib import Path this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() setup( name='custos_jupyterhub_authenticator', long_description_content_type="text/markdown", version='1.0.5', packages=find_packages(), package_data={'': ['*.md']}, include_package_data=True, url='https://github.com/apache/airavata-custos/tree/develop/custos-client-sdks/custos_jupyterhub_authenticator', license='Apache License 2.0', author='Custos Developers', author_email='dev@airavata.apache.org', install_requires=['oauthenticator>=14.2.0'], description='Apache Custos Jupyterhub Authenticator', long_description=long_description, )