forked from InnopolisUni/innofw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·68 lines (60 loc) · 1.4 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
[tool.poetry]
name = "innofw"
version = "0.1.3"
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.2.1"
pytorch-toolbelt = "^0.5.0"
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 = "6.2.2"
tensorflow = "^2.10.0"
streamlit-pydantic = "^0.5.0"
selfies = "^2.1.1"
setuptools = "^65.4.1"
wheel = "^0.37.1"
[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 = ["^1.5.0"]
[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',
]