-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.02 KB
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
[tool.poetry]
name = "responsive-image-utilities"
version = "0.1.0"
description = ""
authors = ["C. Thomas Brittain <cthomasbrittain@hotmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
image-utils = { path = "../image_utils", develop = true }
adaptive-labeler = { path = "../adaptive_labeler", develop = true }
pillow = "^10.4.0"
torchvision = "^0.19.1"
torch = "^2.4.0"
pytorch-lightning = "^2.4.0"
pandas = "^2.2.3"
pyarrow = "^17.0.0"
rich = "^13.8.1"
flet = "^0.27.6"
pytest = "^8.3.5"
pynput = "^1.8.1"
clip = "^0.2.0"
timm = "^1.0.15"
scikit-learn = "^1.6.1"
transformers = "4.37.2"
poethepoet = "^0.34.0"
matplotlib = "^3.10.1"
glances = "^4.3.1"
wandb = "^0.19.11"
pyiqa = "^0.1.13"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html
# https://pytest-with-eric.com/configuration/pytest-config-file/#Using-pytest-ini
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests", "integration"]