-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.68 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.68 KB
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
48
49
50
from setuptools import setup
import os
VERSION_PATH = os.path.join("pypmml", "version.py")
exec(open(VERSION_PATH).read())
VERSION = __version__ # noqa
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pypmml",
version=VERSION,
description="Python PMML scoring library",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["pypmml", "pypmml.jars"],
package_data={
"pypmml.jars": ["*.jar"]
},
# include_package_data=True,
install_requires=[
"py4j>=0.10.7", "JPype1"
],
url="https://github.com/autodeployai/pypmml",
download_url = "https://github.com/autodeployai/pypmml/archive/v" + VERSION + ".tar.gz",
author="AutoDeployAI",
author_email="autodeploy.ai@gmail.com",
license="Apache License 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)