from setuptools import find_packages from setuptools import setup from secrets_manager import __version__ setup( name='secrets_manager', version=__version__, url='https://github.com/theorchard/python-secrets-manager/', author='The Orchard', author_email='webdev@theorchard.com', description='Secrets Manager library.', packages=find_packages(exclude=("tests", "tests.*")), include_package_data=True, install_requires=[ 'boto3', 'botocore' ], zip_safe=False, classifiers=[ 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.12', "Framework :: Pytest", ],)