-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 891 Bytes
/
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
[tool.poetry]
name = "retino-cnn"
version = "0.1.0"
description = "An app using CNN to determine severity od diabetic retinopathy."
authors = ["isulim <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
python-dotenv = "^1.0.1"
litestar = "^2.8.2"
onnx = "^1.16.0"
[tool.poetry.group.dev.dependencies]
torch = "^2.2.1"
pandas = "^2.2.1"
torchvision = "^0.17.1"
numpy = "^1.26.4"
jupyter = "^1.0.0"
notebook = "^7.1.1"
kaggle = "^1.6.6"
split-folders = "^0.5.1"
tabulate = "^0.9.0"
lightning = "^2.2.1"
tqdm = "^4.66.2"
tensorboard = "^2.16.2"
torchmetrics = "^1.3.1"
matplotlib = "^3.8.4"
scikit-learn = "^1.4.2"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.2"
pytest-sugar = "^1.0.0"
[tool.poetry.group.linters.dependencies]
ruff = "^0.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"