#!/usr/bin/env python # -*- coding: utf-8 -*- """ Sound Recording Utils 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. See: https://pythonhosted.org/setuptools/setuptools.html for more details. """ from setuptools import find_packages, setup from soundrecording_utils import __version__ setup( name='soundrecording-utils', version=__version__, description='Utility methods related to handling Sound Recording Version files and creating DDEX documents', author='Sony Music PDE', author_email='webdev@theorchard.com', url='https://github.com/theorchard/python-soundrecording-utils', packages=find_packages(), include_package_data=True, test_suite='tests', zip_safe=False, python_requires='~=3.11', install_requires=[ 'lxml>=6.1.0,<7.0.0', 'typedload>=2.0,<3.0', 'gql[requests]>=4.0.0', ], )