-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from SMTorg/dev
update for compatibility with SMT 2.8
- Loading branch information
Showing
14 changed files
with
80 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
smt~=2.7.0 | ||
smt | ||
scipy==1.10.1 | ||
matplotlib==3.7.5 | ||
pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,33 @@ | ||
from setuptools import setup | ||
""" | ||
Author: Mohammad Daffa Robani <[email protected]> | ||
Paul Saves <[email protected]> | ||
Remi Lafage <[email protected]> | ||
Pramudita Satria Palar < [email protected]> | ||
CLASSIFIERS = """\ | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Science/Research | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: C++ | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Topic :: Software Development | ||
Topic :: Scientific/Engineering | ||
Operating System :: Microsoft :: Windows | ||
Operating System :: Unix | ||
Operating System :: MacOS | ||
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="0.1.0", | ||
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", | ||
classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f], | ||
packages=["smt_explainability"], | ||
install_requires=["smt~=2.7.0"], | ||
install_requires=["smt>=2.8.0", "smt-design-space-ext>=0.3.0"], | ||
extras_require={}, | ||
python_requires=">=3.8", | ||
python_requires=">=3.9", | ||
zip_safe=False, | ||
# url="https://github.com/SMTorg/smt", # use the URL to the github repo | ||
# download_url="https://github.com/SMTorg/smt/releases", | ||
) | ||
|
||
setup(**metadata) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.2.0" |
Large diffs are not rendered by default.
Oops, something went wrong.