-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 876 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 876 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "cclight"
dynamic = ["version"]
description = "ESP32 LED status indicator for Claude Code"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "codeskyblue" },
]
dependencies = [
"pyserial>=3.5",
"python-daemon>=3.1.2",
]
[project.urls]
Homepage = "https://github.com/codeskyblue/cclight"
Repository = "https://github.com/codeskyblue/cclight"
[project.scripts]
cclight = "cclight.cli:main"
[tool.hatch.version]
source = "vcs"
raw-options.version_scheme = "guess-next-dev"
raw-options.tag_regex = "^(?P<version>v?\\d+\\.\\d+\\.\\d+)$"
[tool.hatch.build.hooks.vcs]
version-file = "src/cclight/_version.py"
[dependency-groups]
dev = [
"esptool>=4.11.0",
"mpremote>=1.25.0",
"pytest>=8.3.5",
"tomli>=2.4.1",
]