-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 742 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 742 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
from setuptools import setup, find_packages
setup(
name="calibrate",
version="0.2",
author="",
description="For awesome calibration research",
packages=find_packages(),
python_requries=">=3.9",
install_requires=[
# Please install torch and torchvision libraries before running this script
"torch>=1.12.0",
"torchvision>=0.13.0",
"ipdb==0.13.9",
"albumentations==1.2.1",
# "opencv-python==4.5.1.48",
"hydra-core==1.2.0",
"flake8==4.0.1",
"wandb==0.13.1",
"terminaltables==3.1.10",
"matplotlib==3.5.3",
"plotly==5.10.0",
# "timm==0.4.12",
"timm"
# "segmentation_models_pytorch==0.2.1",
],
)