-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 936 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
[tool.poetry]
name = "modelib"
version = "0.3.1"
description = "A minimalist framework for online deployment of sklearn-like models"
authors = ["Gabriel Guarisa <[email protected]>"]
readme = "README.md"
repository = "https://github.com/pier-digital/modelib"
homepage = "https://github.com/pier-digital/modelib"
license = "MIT"
keywords = ["machine learning", "fastapi", "sklearn", "online deployment"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = "*"
pandas = "~=2.0"
scikit-learn = "*"
fastapi = "*"
python-slugify = "~=8.0"
pydantic = "~=2.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.13"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
httpx = "^0.27.2"
scipy = "^1.15.1"
uvicorn = "^0.34.0"
[tool.pytest.ini_options]
addopts = "-vv --junitxml=pytest.xml -p no:warnings --cov-report term-missing:skip-covered --cov=modelib"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"