-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
78 lines (69 loc) · 1.6 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=69.0.0", "setuptools-scm[toml]>=8.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "marvain"
dynamic = ["version"]
description = "Marvain repository CLI (Makefile replacement)."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"amazon-transcribe",
"boto3",
"cli-core-yo==2.1.0",
"daylily-auth-cognito==2.1.1",
"daylily-tapdb[admin]==6.0.5",
"fastapi",
"httpx",
"insightface",
"itsdangerous",
"jinja2",
"livekit-agents[openai]",
"livekit-plugins-noise-cancellation",
"mangum",
"numpy",
"onnxruntime",
"opencv-python",
"pillow",
"python-dateutil",
"python-dotenv",
"python-jose[cryptography]",
"python-multipart",
"pyyaml",
"requests",
"resemblyzer",
"soundfile",
"uvicorn",
"websockets",
]
[project.optional-dependencies]
dev = [
"playwright",
"pytest",
"pytest-playwright",
"ruff",
]
[project.scripts]
marvain = "marvain_cli.__main__:main"
[tool.setuptools.packages.find]
where = [".", "layers/shared/python"]
include = ["marvain_cli*", "agent_hub*"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.marvain]
# This repo is orchestrated via a checkout-managed Conda env.
env_manager = "conda"
conda_env = "marvain"
conda_file = "environment.yaml"
python = "3.11"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "layers/shared/python"]
markers = ["e2e: tests that exercise deployed stack contracts"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]