-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (52 loc) · 1.28 KB
/
setup.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# Copyright (c) 2022-2024, ETH Zurich, Piotr Libera, Jonas Frey, Matias Mattamala.
# All rights reserved. Licensed under the MIT license.
# See LICENSE file in the project root for details.
#
#
from setuptools import find_packages
from distutils.core import setup
INSTALL_REQUIRES = [
# generic
"numpy",
"tqdm",
"kornia>=0.6.5",
"pip",
"torchvision",
"torch>=1.21",
"torchmetrics",
"pytorch_lightning>=1.6.5",
"pytest",
"scipy",
"scikit-image",
"scikit-learn",
"matplotlib",
"seaborn",
"pandas",
"pytictac",
"torch_geometric",
"omegaconf",
"optuna",
"neptune",
"fast-slic",
"hydra-core",
"prettytable",
"termcolor",
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git",
"liegroups@git+https://github.com/mmattamala/liegroups",
"opencv-python",
"wget",
"rospkg",
"wandb",
"gdown"
]
setup(
name="stego",
version="0.0.1",
author="Piotr Libera, Jonas Frey, Matias Mattamala",
packages=find_packages(),
python_requires=">=3.7",
description="Self-supervised semantic segmentation package based on the STEGO model",
install_requires=[INSTALL_REQUIRES],
)