-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (96 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
103 lines (96 loc) · 1.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "macos-agent"
version = "0.1.0"
description = "MacOS Agent is a collection of agents that can be used to automate tasks on a MacOS system."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"browser-use>=0.1.40",
"google-api-core>=2.24.2",
"docx>=0.2.4",
"docx2pdf>=0.1.8",
"icalendar>=6.1.3",
"langchain>=0.3.25",
"langfuse>=2.60.3",
"moviepy>=1.0.3",
"omegaconf>=2.3.0",
"openai>=1.66.5",
"openpyxl>=3.1.5",
"pdf2docx>=0.5.8",
"playwright>=1.52.0",
"pre-commit>=4.2.0",
"pyautogui>=0.9.54",
"pynput>=1.8.1",
"pyobjc>=11.0",
"pypdf2>=3.0.1",
"pytest>=8.3.5",
"python-pptx>=1.0.2",
"smolagents>=1.13.0",
"transformers>=4.51.3",
"weave>=0.51.42",
]
[project.scripts]
macosagent = "macosagent.__main__:main"
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = { attr = "macosagent.__version__" }
[[tool.uv.index]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"I",
"N",
"UP",
"B",
"SIM",
"PL",
"RUF",
# "PTH",
]
ignore = [
"PLR0912",
"PLR0913",
"PLR0914",
"PLR0915",
"RUF001",
"RUF002",
"RUF003",
"N818",
"E501",
]
per-file-ignores = { "__init__.py" = ["F401"] }
[tool.pylint]
max-line-length = 88
disable = [
"C0114",
"C0115",
"C0116",
"C0302",
"R0801",
"R0902",
"R0903",
"R0912",
"R0913",
"R0914",
"R0915",
"R0916",
"R0917",
"W0511",
"W0613",
"W1514",
"W1203",
"E0401",
"C0301",
"W1203"
]
variable-rgx = "[a-z_][a-z0-9_]*$"
generated-members = "cv2.*"