-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (27 loc) · 973 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
32
33
"""
Author: Mohammad Daffa Robani <[email protected]>
Paul Saves <[email protected]>
Remi Lafage <[email protected]>
Pramudita Satria Palar < [email protected]>
This package is distributed under New BSD license.
"""
from setuptools import setup
# Import __version__ without importing the module in setup
exec(open("./smt_explainability/version.py").read())
metadata = dict(
name="smt-explainability",
version=__version__, # noqa
description="",
long_description="",
author="Daffa Robani et al.",
author_email="[email protected]",
maintainer="Paul Saves",
maintainer_email="[email protected]",
license="BSD-3",
packages=["smt_explainability","smt_explainability.pdp","smt_explainability.problems","smt_explainability.shap" ],
install_requires=["smt>=2.8.0", "smt-design-space-ext>=0.3.0"],
extras_require={},
python_requires=">=3.9",
zip_safe=False,
)
setup(**metadata)