-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 989 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 989 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
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="erdes",
version="0.1.0",
description="Benchmarking ERDES Dataset with 3D CNN and transformer-based architectures for ocular ultrasound classification",
author="PCVLab",
maintainer="Yasemin Ozkut",
maintainer_email="ozkutyasemin@gmail.com",
url="https://github.com/OSUPCVLab/ERDES",
install_requires=[
"torch>=2.0.0",
"torchvision>=0.15.0",
"lightning>=2.0.0",
"torchmetrics>=0.11.4",
"hydra-core==1.3.2",
"hydra-colorlog==1.2.0",
"hydra-optuna-sweeper==1.2.0",
"rootutils",
"rich",
"pandas",
"scikit-learn",
"pytorchvideo",
"monai",
"tensorboard",
"einops",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"train_command = erdes.train:main",
"eval_command = erdes.eval:main",
]
},
)