-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.15 KB
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
[tool.poetry]
name = "ood-retrieval"
version = "0.1.0"
description = "Detection and Retrieval of Out-of-Distribution Objects in Semantic Segmentation"
authors = ["Philipp Oberdiek <git@oberdiek.net>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.7,<4"
Cython = "^0.29.21"
h5py = "^3.1.0"
importlib-metadata = "^2.0.0"
matplotlib = "^3.3.3"
numpy = "^1.21"
opencv-python = "^4.4.0.46"
pandas = "^1.1.4"
Pillow = "^9.0.1"
sacred = "^0.8.1"
scikit-learn = "^0.23.2"
scipy = "^1.5.4"
torch = "^1.7"
torchvision = "^0.8.1"
tqdm = "^4.52.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
isort = "^5.10.1"
black = "^22.3.0"
[tool.black]
line-length = 88
extend-exclude = ".venv,venv"
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 88
known_first_party = ["src"]
[tool.commitizen]
name = "cz_conventional_commits_ronmckay"
version = "0.1.0"
tag_format = "v$version"
major_version_zero = true
version_files = [
"pyproject.toml:^version"
]
update_changelog_on_bump = true
changelog_incremental = true
annotated_tag = true
use_shortcuts = true
bump_message = "bump: Version $current_version → $new_version"