-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.56 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
[project]
name = "windows-use"
version = "0.3.0"
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 = [
"coverage>=7.9.1",
"fuzzywuzzy>=0.18.0",
"humancursor>=1.1.5",
"langchain>=0.3.25",
"langchain-community>=0.3.25",
"langchain-google-genai>=2.1.5",
"langchain-groq>=0.3.4",
"langchain-ollama>=0.3.3",
"langchain-openai>=0.3.27",
"live-inspect==0.1.1",
"markdownify>=1.1.0",
"pillow>=11.2.1",
"pyautogui>=0.9.54",
"pydantic>=2.11.7",
"pytest-cov>=6.2.1",
"python-levenshtein>=0.27.1",
"requests>=2.32.4",
"rich>=14.0.0",
"setuptools>=80.9.0",
"termcolor>=3.1.0",
"twine>=6.1.0",
"uiautomation>=2.0.28",
]
[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"]