[9ae79b]: / setup.py

Download this file

26 lines (24 with data), 551 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
setup(
name="opensrh",
version="0.0",
packages=find_packages(),
install_requires=[
"setuptools>=62.0.0",
"pip>=22.0.0",
"pytest",
"yapf",
"tqdm",
"pyyaml",
"pandas",
"matplotlib",
"tifffile",
"scikit-learn",
"scikit-image",
"opencv-python>=4.2.0.34",
"torch>=1.11",
"torchvision>=0.11.0",
"pytorch-lightning",
"timm",
"tensorboard" # yapf:disable
])