-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 690 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 690 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
from setuptools import setup, find_packages
requirements = ['captum',
'numpy',
'matplotlib',
'opencv-python',
'pandas',
'Pillow',
'pytorch_grad_cam',
'scikit-image',
'scikit-learn',
'scipy',
'seaborn',
'shapely',
'torch',
'torchvision',
'tqdm']
setup(
name="perception",
version="1.0.0",
description="Understanding the Dependence of Perception Model Competency on Regions in an Image",
packages=find_packages(),
install_requires=requirements
)