-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (89 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
97 lines (89 loc) · 2.27 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
[project]
name = "windows-use"
version = "0.7.66"
description = "An AI Agent that interacts with Windows OS at GUI level."
authors = [
{ name = "Jeomon George", email = "[email protected]" }
]
readme = "README.md"
license = 'MIT'
license-files = ["LICENSE"]
urls = { homepage = "https://github.com/CursorTouch" }
keywords = ["windows", "agent", "ai", "desktop","ai agent","automation"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"fuzzywuzzy>=0.18.0",
"ipykernel>=6.29.5",
"markdownify>=1.1.0",
"pillow>=11.2.1",
"psutil>=7.0.0",
"pydantic>=2.11.7",
"python-levenshtein>=0.27.1",
"rich>=14.0.0",
"tabulate>=0.9.0",
"termcolor>=3.1.0",
"twine>=6.1.0",
"python-dotenv>=1.0.0",
"uuid7>=0.1.0",
"posthog>=6.7.8",
"groq>=0.29.0",
"google-genai>=1.45.0",
"openai>=1.93.0",
"ollama>=0.5.1",
"cerebras-cloud-sdk>=1.50.1",
"anthropic>=0.68.1",
"litellm>=1.72.0",
"mistralai>=1.9.11",
"pywin32>=311",
"comtypes>=1.4.14",
"qrcode>=8.2",
"neonize>=0.3.14.post0",
"python-telegram-bot>=21.10",
"pysignalclirestapi>=0.3.24",
"httpx>=0.28.1",
"websockets>=15.0.1",
"discord-py>=2.6.4",
"slack-bolt>=1.27.0",
"pynacl>=1.6.2",
"elevenlabs>=2.35.0",
"deepgram-sdk>=4.0,<5.0",
"datasets>=4.5.0",
"typer>=0.15.0",
"questionary>=2.0.0",
"cryptography>=44.0.0",
]
[project.scripts]
windows-use = "windows_use.cli.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.1",
]
speech = [
"pyaudio>=0.2.14",
"elevenlabs>=1.50.0",
"deepgram-sdk>=3.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ["windows_use"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP"]
ignore = ["E501"]