forked from apache/predictionio-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 2.05 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from distutils.core import setup
from predictionio import __version__
from predictionio import __author__
from predictionio import __email__
setup(name='PredictionIO',
version=__version__,
author=__author__,
author_email=__email__,
packages=['predictionio'],
url = 'http://prediction.io',
license='LICENSE.txt',
description='PredictionIO Python SDK',
classifiers=['Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: Web Environment',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description="""PredictionIO Python SDK
PredictionIO is a prediction server for building smart
applications. While you search data through a database
server, you can make prediction through PredictionIO.
With PredictionIO, you can write apps
- that predict user behaviors based on solid data
science
- using your choice of state-of-the-art machine
learning algorithms
- without worrying about scalability
Detailed documentation is available on our
`documentation site <http://docs.prediction.io>`_.
This module provides convenient access of the
PredictionIO API to Python programmers so that they
can focus on their application logic.
"""
)