-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 971 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
[tool.poetry]
name = "maestro-worker-python"
version = "4.0.0"
description = "Utility to run workers on Moises/Maestro"
authors = ["Moises.ai"]
license = "MIT"
readme = "README.md"
packages = [{include = "maestro_worker_python"}]
exclude = ["tests/**/*"]
[tool.poetry.dependencies]
python = ">3.9,<3.14"
json-logging = ">=1.3,<2"
uvicorn = ">=0.34.0,<0.34.3"
sentry-sdk = {version = ">=1.16,<3", extras = ["fastapi"]}
requests = ">=2.31,<3"
psutil = ">=6.0.0,<7.1"
fastapi = ">=0.100.0,<0.115.13"
pydantic-settings = ">=2.9,<3"
pydantic_core = ">=2.9,<3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-httpserver = "^1.0.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
maestro-server = "maestro_worker_python.server:main"
maestro-cli = "maestro_worker_python.cli:main"
maestro-init = "maestro_worker_python.init:main"
maestro-upload-server = "maestro_worker_python.run_upload_server:main"