#!/usr/bin/env python from setuptools import setup VERSION = "13.4.4" long_description = (open('README').read() + '\n\n' + open('HISTORY.txt').read()) setup( name='dataiku-api-client', version=VERSION, license="Apache Software License", packages=["dataikuapi", "dataikuapi.dss", "dataikuapi.apinode_admin", "dataikuapi.fm", "dataikuapi.iam", "dataikuapi.govern", "dataikuapi.dss_plugin_mlflow", "dataikuapi.dss.langchain", "dataikuapi.dss.tools", "dataikuapi.dss.llm_tracing"], description="Python API client for Dataiku APIs", long_description=long_description, author="Dataiku", author_email="support@dataiku.com", url="https://www.dataiku.com", download_url="https://github.com/dataiku/dataiku-api-client-python/tarball/" + VERSION, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Topic :: Software Development :: Libraries', 'Programming Language :: Python', 'Operating System :: OS Independent' ], install_requires=[ "requests<3", "python-dateutil" ] )