-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (100 loc) · 3.18 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (100 loc) · 3.18 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
104
105
106
107
108
109
110
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "abstractassistant"
version = "0.4.11"
description = "A sleek (macOS) system tray application providing instant access to LLMs"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Laurent-Philippe Albou", email = "contact@abstractcore.ai"}
]
keywords = ["ai", "llm", "macos", "system-tray", "assistant"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Desktop Environment",
]
dependencies = [
# Base install is fully-featured (voice + media + provider/tool integrations).
"abstractagent>=0.3.12",
"abstractvoice>=0.10.18",
# Provider/client extras (avoid GPU-only stacks like vLLM by default).
"abstractcore[openai,anthropic,ollama,lmstudio,tokens,media,tools]>=2.13.38",
# Tray + Qt UI (kept import-safe; CLI help must not import GUI at import time).
"pystray>=0.19.4",
"Pillow>=10.0.0",
"PyQt5>=5.15.0",
"pynput>=1.7.7",
# Markdown rendering in UI
"markdown>=3.5.0",
"pygments>=2.16.0",
"pymdown-extensions>=10.0",
# UX helpers
"pyperclip>=1.8.2",
"plyer>=2.1.0",
# webrtcvad (via abstractvoice) depends on pkg_resources at import time;
# pkg_resources remains available through setuptools 80.x and disappears in 81+.
"setuptools>=61.0,<81",
]
[project.optional-dependencies]
lite = [] # Back-compat alias for the base install.
voice = [
"abstractvoice[audio-io,stt]>=0.10.18",
]
apple = [
"abstractcore[all-apple]>=2.13.38",
"abstractvoice[all-apple]>=0.10.18",
]
gpu = [
"abstractcore[all-gpu]>=2.13.38",
"abstractvoice[all-gpu]>=0.10.18",
]
all = [
"abstractvoice[audio-io,stt]>=0.10.18",
] # Back-compat alias for full voice I/O.
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.5.0",
]
[project.scripts]
assistant = "abstractassistant.cli:main"
abstractassistant = "abstractassistant.cli:main"
create-app-bundle = "abstractassistant.create_app_bundle:main"
[project.urls]
Homepage = "https://github.com/lpalbou/abstractassistant"
Repository = "https://github.com/lpalbou/abstractassistant"
Issues = "https://github.com/lpalbou/abstractassistant/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["abstractassistant*"]
exclude = ["tests*", "docs*", "AbstractAssistant.app*"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests/basic", "tests/integration"]
markers = [
"basic: Level A (contract/unit) tests",
"integration: Level B (integration/local) tests",
"e2e: Level C (end-to-end/real infra) tests (opt-in)",
]