forked from interpretml/interpret
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (53 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (53 loc) · 1.64 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
51
52
53
54
55
56
57
58
# Copyright (c) 2023 The InterpretML Contributors
# Distributed under the MIT software license
from setuptools import setup, find_packages
name = "interpret"
# NOTE: Version is replaced by a regex script.
version = "0.3.1"
long_description = """
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
Let there be light.
https://github.com/interpretml/interpret
"""
interpret_core_extra = [
"required",
"debug",
"notebook",
"plotly",
"lime",
"sensitivity",
"shap",
"ebm",
"skoperules",
"linear",
"decisiontree",
"dash",
"treeinterpreter",
]
setup(
name=name,
version=version,
author="The InterpretML Contributors",
description="Fit interpretable machine learning models. Explain blackbox machine learning.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/interpretml/interpret",
packages=find_packages(),
package_data={},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"interpret-core[{}]=={}".format(",".join(interpret_core_extra), version)
],
)