Diff of /setup.py [000000] .. [9ae79b]

Switch to unified view

a b/setup.py
1
from setuptools import setup, find_packages
2
3
setup(
4
    name="opensrh",
5
    version="0.0",
6
    packages=find_packages(),
7
    install_requires=[
8
        "setuptools>=62.0.0",
9
        "pip>=22.0.0",
10
        "pytest",
11
        "yapf",
12
        "tqdm",
13
        "pyyaml",
14
        "pandas",
15
        "matplotlib",
16
        "tifffile",
17
        "scikit-learn",
18
        "scikit-image",
19
        "opencv-python>=4.2.0.34",
20
        "torch>=1.11",
21
        "torchvision>=0.11.0",
22
        "pytorch-lightning",
23
        "timm",
24
        "tensorboard" # yapf:disable
25
    ])