-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
31 lines (30 loc) · 999 Bytes
/
setup.py
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
import setuptools
setuptools.setup(
name="shapley-regression",
version="0.0.1",
author="Ian Covert",
author_email="[email protected]",
description="For estimating Shapley values via linear regression.",
long_description="""
For calculating the Shapley values of any cooperative game via
linear regression. We use an empirically unbiased estimator with
variance reduction tricks to accelerate convergence.
""",
long_description_content_type="text/markdown",
url="https://github.com/iancovert/shapley-regression",
packages=['shapreg'],
install_requires=[
'numpy',
'scipy',
'tqdm',
'matplotlib'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
python_requires='>=3.6',
)