-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
45 lines (35 loc) · 930 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
42
43
44
45
[tool.poetry]
name = "fastapi-mlflow"
version = "0.6.3"
description = "Deploy mlflow models as JSON APIs with minimal new code."
authors = ["John Harrison <[email protected]>"]
readme = "README.md"
repository = "https://github.com/autotraderuk/fastapi-mlflow"
license = "Apache-2.0"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.dependencies]
python = ">=3.8"
mlflow = "^2.0.1"
numpy = "^1.22.1"
orjson = "^3.9.5"
pandas = "^1.2.0"
pydantic = "^2.2.0"
fastapi = ">=0.100.0, <1"
[tool.poetry.group.dev.dependencies]
black = ">=22"
fastapi = {extras = ["all"], version = ">=0.100.0, <1"}
flake8-bugbear = "^22.1.11"
isort = "^5.10.1"
mypy = "^1.3"
pytest = "^7"
pandas-stubs = "^1.2.0"
pytest-asyncio = "^0.21.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"