# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # 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 # # 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 import re from setuptools import setup, find_packages from osdu_aws import __version__ as osdu_aws_version setup( name='osdu-core-lib-python-aws', install_requires=[ 'osdu_api==0.10.1.dev207+67ed6fe4' ], version=osdu_aws_version, packages=find_packages(), author="aws wellbore DDMS", author_email="aws@aws.com", description="osdu python core lib - aws cloud implementation", license="Apache License, Version 2.0", # We need py 3.7 for some of the tools used here python_requires='>=3.7', )