|
4 | 4 |
|
5 | 5 | VERSION = "9.0.0" |
6 | 6 |
|
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()) |
9 | 9 |
|
10 | 10 | 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