forked from benedekrozemberczki/shapley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (45 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (45 loc) · 1.55 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
import os
from setuptools import find_packages, setup
on_rtd = os.environ.get("READTHEDOCS") == "True"
install_requires = ["numpy",
"scipy",
"six"]
if not on_rtd:
install_requires.append("numba")
setup_requires = ["pytest-runner"]
tests_require = ["pytest",
"pytest-cov",
"mock"]
keywords = ["shapley",
"random-forest",
"data-science",
"shap",
"fairness",
"ensemble",
"expert-system",
"explanability",
"voting-classifier",
"classifier",
"machine-learning",
"deep-learning",
"deeplearning"]
setup(
name = "shapley",
packages = find_packages(),
version = "1.0.2",
license = "MIT",
description = "A general purpose library to quantify the value of classifiers in a machine learning ensemble.",
author = "Benedek Rozemberczki",
author_email = "benedek.rozemberczki@gmail.com",
url = "https://github.com/benedekrozemberczki/shapley",
download_url = "https://github.com/benedekrozemberczki/shapley/archive/v_10002.tar.gz",
keywords = keywords,
install_requires = install_requires,
setup_requires = setup_requires,
tests_require = tests_require,
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7"],
)