-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 938 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 938 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
[project]
name = "mlopspython"
version = "0.0.0"
description = ""
readme = "README.md"
authors = [{ name = "Guillaume Chervet", email = "guillaume.chervet@gmail.com" }]
requires-python = ">=3.11,<3.12"
dependencies = [
"mlopspython-extraction",
"mlopspython-inference"
]
[dependency-groups]
dev = [
"black==23.9.1",
"flake8==6.1.0",
"coverage>=7.3.1,<8"
]
[tool.uv]
package = false
constraint-dependencies = [
"marshmallow==3.21.3"
]
required-environments = [
"platform_system == 'Windows' and python_version >= '3.11'",
"platform_system == 'Linux' and python_version >= '3.11'",
"platform_system == 'Darwin' and python_version >= '3.11'",
]
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[tool.uv.sources]
mlopspython-extraction = { path = "packages/mlopspython-extraction", editable = true}
mlopspython-inference = { path = "packages/mlopspython-inference", editable = true}