-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 968 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 968 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
[tool.poetry]
name = "async-upload"
version = "0.0.1"
description = "Model Registry Job to upload a Model from a source to a destination"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
packages = [{include = "job"}]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
configargparse = ">=1.7.1,<2.0.0"
model-registry = { version = ">=0.2.19,<0.4.0", extras = ["boto3", "olot"] }
pydantic = ">=2.0.0,<3.0.0"
huggingface-hub = "^1.1.5"
requests = "^2.32.5"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.5,<9.0.0"
pytest-asyncio = "^1.2.0"
aiohttp = "^3.13.2"
[tool.poetry.group.integration.dependencies]
kubernetes = "^33.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
markers = [
"e2e: marks tests as end-to-end tests",
"integration: marks tests as integration tests"
]
[tool.ruff]
line-length = 119