projet-long/pyproject.toml
Your Name a71e67690a style: autoformating
Former-commit-id: 8c5c75469afa61e8d3728959390b1354033be462
2022-06-27 15:39:44 +02:00

40 lines
635 B
TOML

[tool.poetry]
name = "unet"
version = "0.1.0"
description = "unet"
authors = ["laurent"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
torch = "^1.11.0"
numpy = "^1.23.0"
scipy = "^1.8.1"
albumentations = "^1.2.0"
tqdm = "^4.64.0"
torchvision = "^0.12.0"
matplotlib = "^3.5.2"
wandb = "^0.12.19"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
/(
\.git
\.venv
)/
'''
include = '\.pyi?$'
line-length = 120
target-version = ["py310"]
[tool.isort]
multi_line_output = 3
profile = "black"