-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.18 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.18 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
# Copyright (c) 2023 The InterpretML Contributors
# Distributed under the MIT software license
from setuptools import find_packages, setup
name = "interpret-api"
# NOTE: Versioning for interpret-api does not update step-lock with other interpret packages.
version = "0.0.1"
long_description = """
Minimal dependency Interpret API for machine learning interpretability.
https://github.com/interpretml/interpret
"""
setup(
name=name,
version=version,
author="The InterpretML Contributors",
author_email="[email protected]",
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 :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"slicer>=0.0.5",
],
)