forked from velexi-research/DermaML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.04 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
[tool.poetry]
name = "DermaML"
version = "0.0.0"
description = ""
license = "Apache-2.0"
authors = ["April Zhang <[email protected]>", "Kevin Chu <[email protected]>"]
[tool.poetry.dependencies]
python = "3.8.*"
bcrypt = "^3.2"
dvc = {extras = ["all"], version = "^2.17"}
fastds = "^0,>=0.6"
ipython = "^8.4"
jupyterlab = "^3.4"
matplotlib = "^3.5"
mlflow = "^1.27"
opencv-python = "^4.6"
pip = ">=22.2"
python-slugify = "^6.1"
PyYAML = ">=5.4"
pdoc3 = "^0,>=0.10"
pillow = "^9.2"
pycaret = "^2.3.10"
scikit-image = "^0.19.3"
tqdm = "^4.64"
typer = "^0,>=0.6"
# security vulnerability fixes
pywin32 = [
{ version = '>=301', platform = 'win32' },
]
[tool.poetry.dev-dependencies]
# TODO: change section name to [tool.poetry.group.dev.dependencies]
# after poetry 1.2.0 is released.
coverage = "^6.4"
flake8 = "^5.0"
pylint = "^2.14"
pytest = "^7.1"
pytest-cov = "^3.0"
pytest-flake8 = "^1.1"
pytest-pylint = "^0,>=0.18"
pytest-xdist = "^2.5"
radon = "^5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"