forked from InnopolisUni/innofw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·88 lines (78 loc) · 1.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "innofw"
version = "1.0.0"
description = ""
authors = ["Kazybek Askarbek <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
python-dotenv = "^0.20.0"
torch = "~1.12.0"
tqdm = "^4.64.0"
h5py = "^3.7.0"
streamlit = "^1.10.0"
albumentations = "^1.1.0"
pytorch-lightning = "^1.6.4"
xgboost = "^1.6.1"
hydra-core = "^1.2.0"
segmentation-models-pytorch = "0.3.3"
pytorch-toolbelt = "0.6.2"
rasterio = "^1.2.10"
pydantic = "^1.9.1"
minio = "^7.1.10"
patool = "^1.12"
catboost = "^1.0.6"
rdkit-pypi = "^2022.3.4"
deepchem = "^2.6.1"
pydicom = "^2.3.0"
urlpath = "^1.2.0"
transformers = "^4.21.2"
datasets = "^2.4.0"
onvif-zeep = "^0.2.12"
fire = "^0.4.0"
yolov5 = "^7.0.7"
streamlit-pydantic = "^0.5.0"
selfies = "^2.1.1"
setuptools = "^65.4.1"
wheel = "^0.37.1"
lovely-tensors = "^0.1.14"
lovely-numpy = "^0.2.8"
wandb = "^0.13.9"
aeronet = "^0.0.18"
ultralytics = "^8.0.124"
clearml = "^1.13.0"
dash-bootstrap-components = "^1.4.1"
dash-core-components = "^2.0.0"
dash-html-components = "^2.0.0"
dash-table = "^5.0.0"
dill = "^0.3.6"
diskcache = "^5.6.1"
Flask = "^2.2.3"
dvc = "^3.30.1"
dvc-s3 = "^2.23.0"
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest-mock = "^3.7.0"
coverage = "^6.4.1"
pytest-cov = "^3.0.0"
pytest = "^7.1.2"
pre-commit = "^2.19.0"
black = "^22.6.0"
mypy = "^0.971"
[tool.poetry.extras]
clearml = ["clearml"]
dui = ["dash-bootstrap-components", "dash-core-components", "dash-html-components", "dash-table", "dill", "diskcache", "Flask"]
dvc = ["dvc", "dvc-s3"]
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.21.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
#log_cli = true
#log_cli_level = "INFO"
filterwarnings = [
# "error",
"ignore::DeprecationWarning",
# # note the use of single quote below to denote "raw" strings in TOML
# 'ignore:function ham\(\) is deprecated:DeprecationWarning',
]