forked from PRBonn/phenobench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (65 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "phenobench"
version = "0.1.0"
description = "The official development kit of the PhenoBench dataset (www.phenobench.org)."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
authors = [
{name = "Jens Behley", email = "[email protected]" },
{name = "Jan Weyler", email = "[email protected]" },
{name = "Federico Magistri", email = "[email protected]" },
{name = "Matteo Sodano", email = "[email protected]" },
{name = "Gianmarco Roggiolani", email = "[email protected]" },
{name = "Elias Marks", email = "[email protected]" },
{name = "Yue (Linn) Chong", email = "[email protected]" },
]
maintainers = [
{name = "Jens Behley", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"matplotlib",
"Pillow>6.2.1"
]
[project.optional-dependencies]
eval = [
"torch",
"torchvision",
"torchmetrics==0.10.3",
"numpy",
"pyyaml",
"tqdm"
]
[project.scripts]
phenobench-validator = "phenobench.tools.validator:run"
phenobench-eval = "phenobench.evaluation.phenobench_eval:run"
[project.urls]
"Homepage" = "https://www.phenobench.org"
"Bug Reports" = "https://github.com/PRBonn/phenobench/issues"
"Source" = "https://github.com/PRBonn/phenobench"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
# tool configuration
[tool.yapf]
based_on_style = "pep8"
column_limit = "120"
indent_width = "2"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "120"
indent-string = ' '