Skip to content

Commit 79b0f4c

Browse files
author
Valentin Thorey
committed
Add plugin to package
1 parent bcd9b77 commit 79b0f4c

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

setup.py

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,31 @@
44

55
VERSION = "9.0.0"
66

7-
long_description = (open('README').read() +
8-
'\n\n' + open('HISTORY.txt').read())
7+
long_description = (open('README').read() + '\n\n' +
8+
open('HISTORY.txt').read())
99

1010
setup(
11-
name='dataiku-api-client',
12-
version=VERSION,
13-
license="Apache Software License",
14-
packages=["dataikuapi", "dataikuapi.dss", "dataikuapi.apinode_admin", "dataikuapi.fm"],
15-
description="Python API client for Dataiku APIs",
16-
long_description=long_description,
17-
author="Dataiku",
18-
author_email="support@dataiku.com",
19-
url="https://www.dataiku.com",
20-
download_url = "https://github.com/dataiku/dataiku-api-client-python/tarball/" + VERSION,
21-
classifiers = [
22-
'Development Status :: 5 - Production/Stable',
23-
'Intended Audience :: Developers',
24-
'License :: OSI Approved :: Apache Software License',
25-
'Topic :: Software Development :: Libraries',
26-
'Programming Language :: Python',
27-
'Operating System :: OS Independent'
28-
],
29-
install_requires = [
30-
"requests>=2,<2.22",
31-
"python-dateutil"
32-
]
33-
)
11+
name='dataiku-api-client',
12+
version=VERSION,
13+
license="Apache Software License",
14+
packages=["dataikuapi", "dataikuapi.dss", "dataikuapi.apinode_admin", "dataikuapi.fm",
15+
"dataikuapi.dss_plugin_mlflow"],
16+
description="Python API client for Dataiku APIs",
17+
long_description=long_description,
18+
author="Dataiku",
19+
author_email="support@dataiku.com",
20+
url="https://www.dataiku.com",
21+
download_url="https://github.com/dataiku/dataiku-api-client-python/tarball/" + VERSION,
22+
classifiers=[
23+
'Development Status :: 5 - Production/Stable',
24+
'Intended Audience :: Developers',
25+
'License :: OSI Approved :: Apache Software License',
26+
'Topic :: Software Development :: Libraries',
27+
'Programming Language :: Python',
28+
'Operating System :: OS Independent'
29+
],
30+
install_requires=[
31+
"requests>=2,<2.22",
32+
"python-dateutil"
33+
]
34+
)

0 commit comments

Comments
 (0)