-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (92 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
103 lines (92 loc) · 2.39 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 = "openadapt"
version = "1.0.5"
description = "GUI automation with ML - record, train, deploy, evaluate"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Richard Abrich", email = "richard@openadapt.ai"}
]
keywords = ["gui", "automation", "ml", "rpa", "agent", "vlm", "computer-use"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# Minimal base - just the CLI
dependencies = [
"click>=8.0.0",
]
[project.optional-dependencies]
# Individual packages
capture = [
"openadapt-capture>=0.1.0",
]
ml = [
"openadapt-ml>=0.2.0",
]
evals = [
"openadapt-evals>=0.1.0",
]
viewer = [
"openadapt-viewer>=0.1.0",
]
grounding = [
"openadapt-grounding>=0.1.0",
]
retrieval = [
"openadapt-retrieval>=0.1.0",
]
privacy = [
"openadapt-privacy>=0.1.0",
]
# Bundles
core = [
"openadapt[capture,ml,evals,viewer]",
]
all = [
"openadapt[core,grounding,retrieval,privacy]",
]
dev = [
"pytest>=8.0.0",
"ruff>=0.1.0",
]
[project.scripts]
openadapt = "openadapt.cli:main"
[project.urls]
Homepage = "https://openadapt.ai"
Documentation = "https://docs.openadapt.ai"
Repository = "https://github.com/OpenAdaptAI/openadapt"
"Bug Tracker" = "https://github.com/OpenAdaptAI/openadapt/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["openadapt"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "main"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "style", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]