-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.18 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
[tool.poetry]
name = "cyclegan-pytorch"
version = "0.1.0"
description = ""
authors = ["Glebbs <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
torch = "^1.11.0"
tqdm = "^4.64.0"
numpy = "^1.23.0"
opencv-python = "^4.6.0"
torchvision = "^0.12.0"
Pillow = "^9.1.1"
matplotlib = "^3.5.2"
pycocotools = "^2.0.4"
tensorboard = "^2.9.1"
tensorboardX = "^2.5.1"
PyYAML = "^6.0"
webcolors = "^1.12"
yadisk = "^1.2.15"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
mypy = "0.941"
flake8 = "^4.0.1"
flake8-bugbear = "22.6.22"
flake8-builtins = "1.5.3"
flake8-comprehensions = "3.10.0"
flake8-docstrings = "1.6.0"
flake8-import-order = "0.18.1"
flake8-tidy-imports = "4.8.0"
jupyter = "^1.0.0"
ipykernel = "^6.4.1"
isort = "^5.10.1"
pre-commit = "^2.19.0"
pytest-env = "^0.6.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
exclude = "(^tests/| ^notebooks/)"
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
force_sort_within_sections = true
line_length = 79
order_by_type = false
known_first_party=["app", "src", "cyclegan_pytorch"]