-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (38 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (38 loc) · 974 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "fastapi-mlflow"
version = "0.8.0"
description = "Deploy mlflow models as JSON APIs with minimal new code."
authors = ["John Harrison <john.harrison@autotrader.co.uk>"]
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.10"
mlflow = ">2.0.1,<4.0"
numpy = "^1.22.1"
orjson = "^3.9.5"
pandas = "<3"
pydantic = "^2.2.0"
fastapi = ">=0.100.0, <1"
pyarrow = ">=19,<24"
[tool.poetry.group.dev.dependencies]
fastapi = {extras = ["all"], version = ">=0.100.0, <1"}
mlflow = "3.10.1"
mypy = "^1.3"
pytest = "^7"
pandas = "^2"
pandas-stubs = "^2"
pytest-asyncio = "^0.21.1"
ruff = "^0.8.6"
setuptools = "^80.9.0"
numpy = "^1.7"
[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"