-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
67 lines (56 loc) · 1.47 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
[tool.poetry]
name = "frdc-ml"
version = "0.1.0"
description = ""
authors = ["Eve-ning"]
license = "MIT"
readme = "README.md"
packages = [{ include = "src/frdc" }]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.25.2"
scikit-image = "0.22.0"
scikit-learn = "^1.3.0"
seaborn = "^0.13.0"
matplotlib = "^3.7.3"
google-cloud-storage = "^2.10.0"
tqdm = "^4.66.1"
xxhash = "^3.4.1"
label-studio-sdk = "^0.0.32"
python-dotenv = "^1.0.1"
torch = {version = "^2.3.1+cu121", source = "pytorch-gpu"}
torchvision = {version = "^0.18.1+cu121", source = "pytorch-gpu"}
torchaudio = {version = "^2.3.1+cu121", source = "pytorch-gpu"}
lightning = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
black = "^23.10.0"
wandb = "^0.16.0"
plotly = "^5.22.0"
[[tool.poetry.source]]
name = "pytorch-gpu"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
testpaths = [
"tests/unit_tests",
"tests/integration_tests",
]
log_format = "%(asctime)s %(levelname)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_file = "pytest.log"
log_file_level = "INFO"
log_file_format = "%(asctime)s %(levelname)s %(message)s"
log_file_date_format = "%Y-%m-%d %H:%M:%S"
[tool.black]
line-length = 79