-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 747 Bytes
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
[tool.poetry]
name = "api-wildsense-interview"
version = "0.1.0"
description = "Wildsense interview test"
authors = ["Ernesto Martinez del Pino <ernestomar1997@hotmail.com>"]
readme = "README.md"
packages = [
{ include = "app" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
fastapi = "0.85.*"
uvicorn = "0.18.*"
python-decouple = "3.6"
tensorflow = "2.10.*"
keras = "2.10.*"
python-multipart = "0.0.*"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "6.5.*"}
black = {version = "22.8.*", allow-prereleases = true}
pytest = "7.1.*"
pytest-html = "3.1.*"
pytest-cov = ">=2.10.1,<3.0.0"
pylint = "2.15.*"
Pillow = "9.2.*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"