-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.31 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
[project]
name = "macllm"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13.2"
dependencies = [
"bashlex>=0.18",
"beautifulsoup4>=4.12.3",
"certifi>=2024.12.14",
"litellm>=1.0.0",
"maccal>=1.0.0",
"markdown-it-py>=4.0.0",
"openai[realtime]>=1.54.4",
"pyobjc>=10.3.1",
"pytest>=8.3.5",
"quickmachotkey>=2023.11.17",
"requests>=2.32.3",
"shmail>=0.1.0",
"smolagents>=0.1.0",
"things.py>=1.0.1",
"tomli_w>=1.0.0",
"txtai>=9.3.0",
]
[tool.pytest.ini_options]
addopts = "-m 'not external and not calendar and not things and not uitest and not uitest_external'"
markers = [
"external: tests that hit external services",
"calendar: tests that access macOS calendar (requires permissions)",
"things: tests that access the real Things app and database (requires Things URLs auth)",
"sandbox: tests that exercise macOS sandbox-exec (requires macOS)",
"uitest: tests that open the macLLM UI window (excluded from default test run)",
"uitest_external: UI tests that call an external vision LLM for visual regression",
]
filterwarnings = [
"ignore::UserWarning:pydantic.*",
"ignore:There is no current event loop:DeprecationWarning:litellm.*",
]
[dependency-groups]
dev = [
"py2app>=0.28.10",
]