-
Notifications
You must be signed in to change notification settings - Fork 113
/
setup.py
42 lines (40 loc) · 1.13 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
from setuptools import find_packages, setup
exec(open("sklearn2pmml/metadata.py").read())
setup(
name = "sklearn2pmml",
version = __version__,
description = "Python library for converting Scikit-Learn pipelines to PMML",
author = "Villu Ruusmann",
author_email = "[email protected]",
url = "https://github.com/jpmml/sklearn2pmml",
download_url = "https://github.com/jpmml/sklearn2pmml/archive/" + __version__ + ".tar.gz",
license = __license__,
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Scientific/Engineering"
],
packages = find_packages(exclude = ["*.tests"]),
package_data = {
"sklearn2pmml.resources" : ["classpath.txt", "*.jar"]
},
exclude_package_data = {
"" : ["README.md"],
},
entry_points={
"console_scripts" : [
"sklearn2pmml=sklearn2pmml.cli:main",
],
},
python_requires = ">=3.8",
install_requires = [
"dill>=0.3.4",
"joblib>=0.13.0",
"pandas>=1.5.0",
"scikit-learn>=1.0"
]
)