-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1011 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
34
35
36
37
38
39
40
41
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tshield-xai",
version="0.0.1",
author="Iván Sevillano Garcia",
author_email="[email protected]",
description="Transformation-Selective Hidden Input Evaluation for Learning Dynamics",
long_description=long_description,
classifiers=["Programming Language :: Python :: 3"],
packages=setuptools.find_packages(),
install_requires=[
"torch",
"scikit-learn",
"scikit-image",
"matplotlib",
"numpy",
"scipy",
"pandas",
"torchvision",
"efficientnet_pytorch",
"tqdm",
"opencv-python",
"IPython",
"seaborn",
"plotly",
"ipywidgets",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib.bibtex",
"nbsphinx",
"wget",
"pandoc",
"ReVel",
"torchsummary",
"tensorboard",
],
)