-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (43 loc) · 1.16 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "mess-benchmark"
version = "0.2"
authors = [
{ name="Benedikt Blumenstiel", email="[email protected]"},
]
description = "MESS – Multi-domain Evaluation of Semantic Segmentation"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
keywords = ["mess", "benchmark", "zero-shot", "evaluation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'torch>=1.10.1',
'torchvision>=0.11.2',
'pandas>=1.5.1',
'numpy>=1.22.4',
'rasterio>=1.3.4',
'gdown>=4.6.4',
'opencv-python-headless>=4.7.0.72',
'iopath>=0.1.7',
'Pillow>=7.1',
'tqdm>=4.64.1',
'matplotlib>=3.6.2',
]
[project.optional-dependencies]
all = [
'scipy',
'pycocotools',
]
[project.urls]
"Homepage" = "https://blumenstiel.github.io/mess-benchmark/"
"Bug Tracker" = "https://github.com/blumenstiel/MESS/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["mess", "mess.*"]