Metadata-Version: 2.1
Name: better-boto
Version: 0.6.1
Summary: Helpers to make using boto3 more enjoyable
Home-page: https://github.com/eamonnfaherty/better-boto
Author: Eamonn Faherty
Author-email: python-packages@designandsolve.co.uk
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pyyaml (>=4.2b1)

import setuptools
import os

with open(os.path.abspath(__file__), "r") as fh:
    long_description = fh.read()

setuptools.setup(
    name="better-boto",
    version="0.6.1",
    author="Eamonn Faherty",
    author_email="python-packages@designandsolve.co.uk",
    description="Helpers to make using boto3 more enjoyable",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/eamonnfaherty/better-boto",
    packages=setuptools.find_packages(),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    install_requires=[
        "pyyaml>=4.2b1",
    ],
)


