-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.31 KB
/
pyproject.toml
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
[project]
name = "mlx-use"
description = "Make MacOS apps accessible for AI agents"
authors = [
{ name = "Ofir Ozeri", mail = "[email protected]" }
]
version = "0.0.3"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"MainContentExtractor>=0.0.4",
"beautifulsoup4>=4.12.3",
"httpx>=0.27.2",
"langchain==0.3.14",
"langchain-openai==0.3.1",
"langchain-anthropic==0.3.3",
"langchain-ollama==0.2.2",
"langchain-fireworks>=0.2.6",
"langchain-aws>=0.2.11",
"langchain-google-genai==2.0.8",
"pydantic>=2.10.4",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
"posthog>=3.7.0",
"playwright>=1.49.0",
"setuptools>=75.8.0",
"lmnr[langchain]>=0.4.53",
"pycocoa>=25.1.18",
"pyobjc>=11.0.0",
"gradio>=5.16.1"
]
[project.optional-dependencies]
dev = [
"tokencost>=0.1.16",
"hatch>=1.13.0",
"build>=1.2.2",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0"
]
[tool.ruff]
line-length = 130
select = ["E", "F", "I"]
fix = true
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"