import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="aws-proton-helper", version="0.1.3", author="Aaron Wishnick", description="Helper tool for working with AWS Proton templates", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/aws-samples/aws-proton-template-helper", packages=setuptools.find_packages(), package_data={'': ['convert_schema/openapi_base_specs/*.yaml']}, include_package_data=True, classifiers=( "License :: OSI Approved :: Apache Software License", ), install_requires=[ 'pyyaml', 'boto3', 'jinja2', 'jinja2schema', 'questionary', 'openapi-core', 'openapi-spec-validator' ], scripts=['bin/aws-proton-helper'], )