forked from sirendhead/Windows-Use
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.65 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
[project]
name = "windows-use"
version = "0.6.9"
description = "An AI Agent that interacts with Windows OS at GUI level."
authors = [
{ name = "Jeomon George", email = "jeogeoalukka@gmail.com" }
]
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.13"
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.13",
]
dependencies = [
"fuzzywuzzy>=0.18.0",
"ipykernel>=6.29.5",
"live-inspect==0.1.1",
"markdownify>=1.1.0",
"pillow>=11.2.1",
"psutil>=7.0.0",
"pyautogui>=0.9.54",
"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",
"uiautomation>=2.0.29",
"requests>=2.31.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",
"mistralai>=1.9.11",
"pywin32>=311",
"huggingface>=0.0.1",
"datasets>=4.4.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"ruff>=0.12.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
packages = ["windows_use"]