forked from jpmml/sklearn2pmml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 728 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 728 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
28
29
from distutils.core import setup
import sys
sys.path.append('sklearn2pmml')
from version import __version__
from license import __license__
setup(
name = "sklearn2pmml",
version = __version__,
description = "Python library for converting Scikit-Learn models to PMML",
author = "Villu Ruusmann",
author_email = "villu.ruusmann@gmail.com",
url = "https://github.com/jpmml/sklearn2pmml",
license = __license__,
packages = [
"sklearn2pmml",
"sklearn2pmml.decoration",
"sklearn2pmml.feature_extraction",
"sklearn2pmml.feature_extraction.text",
"sklearn2pmml.resources"
],
package_data = {
"sklearn2pmml.resources" : ["*.jar"]
},
install_requires = [
"scikit-learn>=0.16.0",
"sklearn_pandas>=0.0.10"
]
)