-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 835 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 835 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "machine-learning-infrastructure-service"
version = "0.1.0"
requires-python = ">=3.11"
description = "Machine Learning Infrastructure Service for durable inference jobs"
license = "Apache-2.0"
dependencies = [
"fastapi",
"uvicorn[standard]",
"typer>=0.12.0",
"pydantic",
"pyyaml",
"prometheus-client",
"httpx",
"psycopg[binary,pool]",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
]
[project.scripts]
mlis = "app.cli.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
asyncio_mode = "auto"
markers = [
"e2e: end-to-end tests (artifact flow, k8s rollout, etc.).",
]