-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 876 Bytes
/
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
#!/usr/bin/env python
import setuptools
long_description = (open('README.md').read() + '\n\n' +
open('HISTORY.txt').read())
VERSION = "13.3.1"
setuptools.setup(
name='dataiku-scoring',
version=VERSION,
license="Apache Software License",
packages=setuptools.find_packages(),
description="Dataiku ML Scoring Python library",
long_description=long_description,
author="Dataiku",
author_email="[email protected]",
url="https://www.dataiku.com",
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=[
"numpy"
]
)