-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (32 loc) · 890 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
32
33
34
from setuptools import find_packages, setup
exec(open("jpmml_evaluator/metadata.py").read())
setup(
name = "jpmml_evaluator",
version = __version__,
description = "PMML evaluator library for Python",
author = "Villu Ruusmann",
author_email = "[email protected]",
url = "https://github.com/jpmml/jpmml-evaluator-python",
download_url = "https://github.com/jpmml/jpmml-evaluator-python/archive/" + __version__ + ".tar.gz",
license = __license__,
packages = find_packages(exclude = ["*.tests.*", "*.tests"]),
package_data = {
"jpmml_evaluator.dependencies" : ["*.jar"],
"jpmml_evaluator.resources" : ["*.jar"]
},
exclude_package_data = {
"" : ["README.md"],
},
entry_points={
"console_scripts" : [
"jpmml_evaluator=jpmml_evaluator.cli:main",
],
},
python_requires = ">=3.8",
install_requires = [
"jpype1",
"pandas",
"py4j",
"pyjnius>=1.2.1"
]
)