-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
34 lines (30 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup
VERSION = "13.2.3"
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"],
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"
]
)