20 lines
391 B
TOML
20 lines
391 B
TOML
[project]
|
|
name = "support-agent"
|
|
version = "0.1.0"
|
|
description = "AI screenshot answer assistant"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"mss>=10.1.0",
|
|
"openai>=2.32.0",
|
|
"pynput>=1.8.1",
|
|
"pyqt6>=6.11.0",
|
|
"python-dotenv>=1.2.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
support-agent = "support_agent.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|