2026-03-10 02:23:24 -04:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "cursor-flasher"
|
2026-03-10 07:01:52 -04:00
|
|
|
version = "0.2.0"
|
|
|
|
|
description = "Flash Cursor's window when the AI agent needs attention"
|
2026-03-10 08:03:22 -04:00
|
|
|
readme = "README.md"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
authors = [{ name = "cottongin" }]
|
2026-03-10 02:23:24 -04:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
2026-03-10 03:12:10 -04:00
|
|
|
"pyobjc-framework-applicationservices>=12.1",
|
2026-03-10 02:23:24 -04:00
|
|
|
"pyobjc-framework-Cocoa",
|
|
|
|
|
"pyobjc-framework-Quartz",
|
|
|
|
|
"PyYAML",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = ["pytest", "pytest-mock"]
|
|
|
|
|
|
2026-03-10 08:03:22 -04:00
|
|
|
[project.urls]
|
|
|
|
|
Repository = "https://code.cottongin.xyz/cursor-flasher"
|
|
|
|
|
|
2026-03-10 02:23:24 -04:00
|
|
|
[project.scripts]
|
|
|
|
|
cursor-flasher = "cursor_flasher.cli:main"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
2026-03-10 03:12:10 -04:00
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
|
dev-dependencies = ["pytest", "pytest-mock"]
|