-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 1.06 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
[project]
name = "devspark-cli"
version = "2.7.0"
description = "DevSpark CLI — AI development lifecycle prompts and scaffolding for any coding assistant."
authors = [{ name = "Make Bold Spark" }]
keywords = ["makeboldspark", "spark", "devspark", "ai-agents", "sdd"]
requires-python = ">=3.11"
dependencies = [
"typer",
"click>=8.1",
"rich",
"httpx[socks]",
"platformdirs",
"readchar",
"truststore>=0.10.4",
"pydantic>=2.0",
"jsonschema>=4.0",
"PyYAML>=6.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.scripts]
devspark = "devspark_cli:main"
[project.urls]
Homepage = "https://dev.makeboldspark.com"
Repository = "https://github.com/markhazleton/devspark"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/devspark_cli"]
[tool.hatch.build.targets.wheel.force-include]
"agents-registry.json" = "src/devspark_cli/agents-registry.json"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]