-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 887 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 887 Bytes
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
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name='robustx',
version='1.0.0',
packages=find_packages(),
install_requires=[
'torch==2.4.1',
'gurobipy==11.0.1',
'clingo>=5.6.2',
'tensorflow==2.16.2',
'keras==3.0.5',
'pytest',
'notebook',
'numpy',
'pandas',
'scikit-learn',
'scipy',
'tqdm',
'tabulate',
'streamlit',
'matplotlib',
'seaborn',
],
url="https://github.com/RobustCounterfactualX/RobustX",
author='Junqi Jiang, Luca Marzari, Aaryan Purohit, Francesco Leofante',
description='A Python library for benchmarking robust counterfactual explanations.',
python_requires='>=3.9',
)