-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (73 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling>=1.32.0"]
build-backend = "hatchling.build"
[project]
name = "devspec"
version = "0.2.0"
description = "Installer and synchronizer CLI for the devspec workflow framework."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "devspec contributors" }
]
keywords = ["ai", "agents", "developer-tools", "workflow", "spec-driven-development"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
]
dependencies = []
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[project.scripts]
devspec = "devspec_installer.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/devspec_installer"]
[tool.hatch.build.targets.wheel.force-include]
"AGENTS.md" = "src/devspec_installer/payload/AGENTS.md"
"GEMINI.md" = "src/devspec_installer/payload/GEMINI.md"
"README.md" = "src/devspec_installer/payload/README.md"
"devspec" = "src/devspec_installer/payload/devspec"
".github/prompts" = "src/devspec_installer/payload/.github/prompts"
".github/agents" = "src/devspec_installer/payload/.github/agents"
".github/skills" = "src/devspec_installer/payload/.github/skills"
".claude" = "src/devspec_installer/payload/.claude"
".cursor" = "src/devspec_installer/payload/.cursor"
".gemini" = "src/devspec_installer/payload/.gemini"
".agents" = "src/devspec_installer/payload/.agents"
"packaging/devspec-profiles.json" = "src/devspec_installer/payload/packaging/devspec-profiles.json"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
"/scripts",
"/packaging",
"/.github/prompts",
"/.github/agents",
"/.github/skills",
"/.claude",
"/.cursor",
"/.gemini",
"/.agents",
"/devspec",
"/docs",
"/AGENTS.md",
"/GEMINI.md",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]