from setuptools import find_packages from setuptools import setup from vector_utils import __version__ setup( name="vector_utils", version=__version__, url="https://github.com/theorchard/python-vector-utils/", author="The Orchard", author_email="webdev@theorchard.com", description="Vector Utils library.", packages=find_packages(exclude=("tests", "tests.*")), include_package_data=True, install_requires=["lambdacommon~=4.0", "boto3~=1.21", "google-cloud-storage==3.3.0", "paramiko~=3.5"], zip_safe=False, classifiers=[ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Framework :: Pytest", ], )