#!/usr/bin/env python # -*- coding: utf-8 -*- """ ISO Standards Setup. Standard setup.py file which is used to package and distribute a Python package with Distutils so that it can be published to a PyPI server. This file belongs in the root directory of a project repository. This is an example that uses some basic options which are available for the setup of a PyPI package. It also reads and gathers example dependencies for a package. See: https://pythonhosted.org/setuptools/setuptools.html for more details. """ from bulk_metadata_ingester_common import __version__ from setuptools import find_packages from setuptools import setup setup( name='bulk-metadata-ingester-common', version=__version__, url='https://github.com/theorchard/bulk-metadata-ingester-common/', author='The Orchard', author_email='webdev@theorchard.com', description='Common package for Bulk Metadata Ingester.', packages=find_packages(), test_suite='tests', include_package_data=True, zip_safe=False, install_requires=[ 'boto3>=1.14.27,<2', 'marshmallow==3.7.1', 'sgqlc==11.0', 'xmltodict==0.12.0', 'ddtrace==0.43.1', 'urllib3>=1.25.11', 'pyjwt==2.4.0' ], )