-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.62 KB
/
setup.py
File metadata and controls
54 lines (49 loc) · 1.62 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
# Copyright (c) 2023 The InterpretML Contributors
# Distributed under the MIT software license
from setuptools import find_packages, setup
name = "interpret"
# NOTE: Version is replaced by a regex script.
version = "0.6.10"
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 = [
"debug",
"notebook",
"plotly",
# "lime", # no longer maintained
"sensitivity",
"shap",
# "skoperules", # no longer maintained
"linear",
"dash",
# "treeinterpreter", # no longer maintained
"aplr",
]
setup(
name=name,
version=version,
author="The InterpretML Contributors",
author_email="[email protected]",
description="Fit interpretable models. Explain blackbox machine learning.",
long_description=long_description,
url="https://github.com/interpretml/interpret",
packages=find_packages(),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"interpret-core[{}]=={}".format(",".join(interpret_core_extra), version)
],
)