#!/usr/bin/env python3 import os import shutil from setuptools import find_packages from setuptools import setup shutil.rmtree("build", ignore_errors=True) setup( name="package name", version='1.1', packages=find_packages(), include_package_data=True, install_requires=[ "boto3", ], author="author", author_email="author@author.com", description="All the stuff", url="https://www.author.com", )