-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 727 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 727 Bytes
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
# -*- coding: utf-8 -*-
# Author: Wilson Estécio Marcílio Júnior <wilson_jr@outlook.com>
#
# License: BSD 3 clause
from setuptools import setup
__version__ = "0.0.1"
with open('README.md', 'r', encoding='utf8') as f:
long_description = f.read()
setup(
name="swarm-explainer",
version=__version__,
author="Wilson E. Marcílio-Jr",
author_email="wilson_jr@outlook.com",
url="https://github.com/wilsonjr/SwarmExplainer",
description="Model-agnostic explanations using feature perturbations",
long_description=long_description,
extras_require={"test": "pytest"},
install_requires=['pandas', 'sklearn', 'numpy', 'shap', 'seaborn'],
packages=['swarm_explainer'],
zip_safe=False,
)