import setuptools with open("README.md") as fp: long_description = fp.read() setuptools.setup( name="UbuntuDeveloperWorkstationImagePipeline", version="0.0.1", description="Ubuntu Developer Workstation Image Pipeline", long_description=long_description, long_description_content_type="text/markdown", author="AP", package_dir={"": "stacks"}, packages=setuptools.find_packages(where="stacks"), install_requires=[ "aws-cdk.core", "aws-cdk.aws_iam", "aws-cdk.aws_ec2", "aws-cdk.aws_imagebuilder", "aws-cdk.aws_codebuild", "aws-cdk.aws_s3", "aws-cdk.aws_s3_deployment", "aws-cdk.aws_codecommit", "aws-cdk.aws_codepipeline", "aws-cdk.aws_codepipeline_actions", "aws-cdk.aws_cloudformation" ], python_requires=">=3.6", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT No Attribution License (MIT-0)", "Programming Language :: JavaScript", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Software Development :: Code Generators", "Topic :: Utilities", "Typing :: Typed", ], )