|
1 |
| -from setuptools import setup |
| 1 | +""" |
| 2 | +Author: Mohammad Daffa Robani <[email protected]> |
| 3 | + |
| 4 | + |
| 5 | + Pramudita Satria Palar < [email protected]> |
2 | 6 |
|
3 |
| -CLASSIFIERS = """\ |
4 |
| -Development Status :: 5 - Production/Stable |
5 |
| -Intended Audience :: Science/Research |
6 |
| -Intended Audience :: Developers |
7 |
| -License :: OSI Approved :: BSD License |
8 |
| -Programming Language :: C++ |
9 |
| -Programming Language :: Python |
10 |
| -Programming Language :: Python :: 3 |
11 |
| -Programming Language :: Python :: 3.8 |
12 |
| -Programming Language :: Python :: Implementation :: CPython |
13 |
| -Topic :: Software Development |
14 |
| -Topic :: Scientific/Engineering |
15 |
| -Operating System :: Microsoft :: Windows |
16 |
| -Operating System :: Unix |
17 |
| -Operating System :: MacOS |
| 7 | +This package is distributed under New BSD license. |
18 | 8 | """
|
19 | 9 |
|
| 10 | +from setuptools import setup |
| 11 | + |
| 12 | + |
| 13 | +# Import __version__ without importing the module in setup |
| 14 | +exec(open("./smt_explainability/version.py").read()) |
| 15 | + |
20 | 16 | metadata = dict(
|
21 | 17 | name="smt-explainability",
|
22 |
| - version="0.1.0", |
| 18 | + version=__version__, # noqa |
23 | 19 | description="",
|
24 | 20 | long_description="",
|
25 | 21 | author="Daffa Robani et al.",
|
26 | 22 |
|
| 23 | + maintainer="Paul Saves", |
| 24 | + maintainer_email="[email protected]", |
27 | 25 | license="BSD-3",
|
28 |
| - classifiers=[_f for _f in CLASSIFIERS.split("\n") if _f], |
29 | 26 | packages=["smt_explainability"],
|
30 |
| - install_requires=["smt~=2.7.0"], |
| 27 | + install_requires=["smt>=2.8.0", "smt-design-space-ext>=0.3.0"], |
31 | 28 | extras_require={},
|
32 |
| - python_requires=">=3.8", |
| 29 | + python_requires=">=3.9", |
33 | 30 | zip_safe=False,
|
34 |
| - # url="https://github.com/SMTorg/smt", # use the URL to the github repo |
35 |
| - # download_url="https://github.com/SMTorg/smt/releases", |
36 | 31 | )
|
37 | 32 |
|
38 | 33 | setup(**metadata)
|
0 commit comments