-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (47 loc) · 1.55 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
[project]
name = "vibesignal"
version = "0.1.2"
description = "Physical status light for coding agents (Claude Code / Codex) via busylight"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Yue Zhao", email = "yzhao010@usc.edu" }]
keywords = [
"claude-code", "codex", "ai-agent", "status-light", "busylight",
"tkinter", "macos", "windows", "linux", "developer-tools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
dependencies = [
"busylight-core>=2.3.0",
]
[project.optional-dependencies]
dev = ["pytest>=7", "build>=1.0", "twine>=5.0"]
macos = ["pyobjc-framework-Cocoa>=10"]
[project.scripts]
vibesignal = "vibesignal.__main__:main"
[project.urls]
Homepage = "https://github.com/yzhao062/vibesignal"
Repository = "https://github.com/yzhao062/vibesignal"
Issues = "https://github.com/yzhao062/vibesignal/issues"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["vibesignal"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]