forked from airctic/icevision
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_pyproject.toml
70 lines (61 loc) · 1.95 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
[tool.poetry]
name = "icevision"
version = "0.11.0"
description = "Agnostic Computer Vision Framework"
authors = ["Lucas Goulart Vazquez <[email protected]>, Farid Hassainia <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = ">=3.7,<3.9"
pillow = ">8.0.0,<9"
torch = "1.10.0+cu102"
torchvision = "0.11.0+cu102"
fastcore = ">=1.3.0,<1.4"
tqdm = ">=4.49.0,<5"
opencv-python = ">=4.1.1,<5"
albumentations = ">=1.0.3,<1.1"
matplotlib = ">=3.2.2,<4"
pycocotools = ">=2.0.2,<3"
requests = ">=2.23.0,<3"
loguru = ">=0.5.3"
importlib-metadata = ">=1"
fastai = "~2.5.2"
ipykernel = ">=4.10.1,<6"
pytorch-lightning = "~1.4.5"
effdet = "~0.2.1"
omegaconf = "~2"
dataclasses = "0.6"
wandb = "^0.12.9"
sahi = ">0.8.19,<1"
resnest = ">=0.0.6b20201125,<0.0.7"
yolov5-icevision = "~6"
[[tool.poetry.source]]
name = "torch_rep"
url = "https://eternalphane.github.io/pytorch-pypi"
[[tool.poetry.source]]
name = "mmcv_full_rep"
#url = "http://localhost:8000/"
url = "https://download.openmmlab.com/mmcv/dist/cu102/torch1.10.0/index.html"
default=true
#poe the poetry artist
#[tool.poe.tasks]
### PyTorch with CUDA 11.1. If PyTorch is imported first, importing Tensorflow will detect CUDA + cuDNN bundled with PyTorch
### Run with the command "poe force-cuda11"
### See https://github.com/python-poetry/poetry/issues/2543
#force-cuda102 = "pip install torch==1.10.0+cu102 torchvision==0.11.1+cu102 -f https://download.pytorch.org/whl/torch_stable.html"
#force-mmcv = "pip install mmcv-full==1.3.17 -f https://download.openmmlab.com/mmcv/dist/cu102/torch1.10.0/index.html"
[tool.poetry.dev-dependencies]
black = "==20.8b1"
pytest = ">=6,<7"
keras-autodoc = "==0.6.0"
mkdocs = ">=1.1.2,<2"
mike = ">=1.0"
jupyter = ">=1.0.0,<2"
pymdown-extensions = ">=8.0,<9"
Sphinx = ">=3.1.0,<4"
pytest-cov = ">=2.10.1,<3"
flake8 = ">=3.8.3,<4"
pre-commit = ">=2.8.2,<3"
pytest-mock = ">=3.6.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"