blob: d4d3cd672dc8882a5fa67bd95338df18dd90b161 (
plain) (
blame)
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
|
[project]
name = "claude-config-install"
version = "0.1.0"
description = "Initialize Claude configuration from environment variables"
requires-python = ">=3.9"
dependencies = []
[project.scripts]
claude-config-install = "claude_config_install.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.0",
"ruff>=0.9",
"twine>=6.1",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
strict = true
python_version = "3.9"
|