forked from dataiku/dataiku-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup
VERSION = "7.0.0"
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"],
description="Python API client for Dataiku APIs",
long_description=long_description,
author="Dataiku",
author_email="[email protected]",
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>=2,<2.22",
"python-dateutil"
]
)