forked from interpretml/DiCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.06 KB
/
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
32
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
# Get the required packages
with open('requirements.txt', encoding='utf-8') as f:
install_requires = f.read().splitlines()
setuptools.setup(
name="dice_ml",
version="0.2",
author="Ramaravind, Amit, Chenhao",
author_email="[email protected]",
description="Generates Diverse Counterfactual Explanations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/DiCE",
packages=setuptools.find_packages(), #setuptools.find_packages(), ['dice_ml', 'dice_ml.data_interfaces', 'dice_ml.dice_interfaces', 'dice_ml.model_interfaces', 'dice_ml.utils']
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=install_requires,
include_package_data=True,
package_data={
# If any package contains *.h5 files, include them:
'': ['*.h5']
}
)