mirror of
https://github.com/Laurent2916/REVA-QCAV.git
synced 2024-11-08 14:39:00 +00:00
e6bc1af17b
Former-commit-id: 02d27dd3e56646703711d75d2db888f2fab13639 [formerly af31bc1a49f8d445dffcff71bd3d37cf419f2078] Former-commit-id: 910c4eff9b30c71b755b97c6aea36e57548dd4ec
45 lines
884 B
TOML
45 lines
884 B
TOML
[tool.poetry]
|
|
authors = ["Laurent Fainsin <laurent@fainsin.bzh>"]
|
|
description = "Simple neural network to detect calibration spheres in images"
|
|
name = "sphereDetect"
|
|
version = "1.0.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
albumentations = "^1.2.1"
|
|
numpy = "^1.23.2"
|
|
onnx = "^1.12.0"
|
|
python = ">=3.8,<3.11"
|
|
pytorch-lightning = "^1.7.4"
|
|
torch = "^1.12.1"
|
|
torchmetrics = "^0.9.3"
|
|
torchvision = "^0.13.1"
|
|
wandb = "^0.13.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = {extras = ["jupyter"], version = "^22.8.0"}
|
|
ipykernel = "^6.15.2"
|
|
isort = "^5.10.1"
|
|
matplotlib = "^3.5.3"
|
|
mypy = "^0.971"
|
|
onnxruntime = "^1.12.1"
|
|
pre-commit = "^2.20.0"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
[tool.black]
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
\.venv
|
|
)/
|
|
'''
|
|
include = '\.pyi?$'
|
|
line-length = 120
|
|
target-version = ["py310"]
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
profile = "black"
|