-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 794 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 794 Bytes
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
import setuptools
with open("README.md", "r") as fd:
long_desc = fd.read()
setuptools.setup(
name="dataiku-plugin-tests-utils",
version="0.0.1",
description="The common tooling needed for each plugin",
author="Dataiku",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://www.dataiku.com",
packages=setuptools.find_packages(),
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Operating System :: OS Independent'
],
python_requires='>=2.7',
install_requires = [
"dataiku-api-client"
]
)