# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="Media Insights Engine Lambda Helper", version="1.0.0", author="AWS Solutions Builder", author_email="redacted@example.com", description="Helper classes for developing Media Insights on AWS Lambda Functions", long_description=long_description, long_description_content_type="text/markdown", url="https://code.amazon.com/packages/MediaInsightsEngine", packages=setuptools.find_packages(), install_requires=[ 'boto3', 'urllib3' ], classifiers=[ "Programming Language :: Python :: 3", "License :: Other/Proprietary License", "Operating System :: OS Independent", ], )