-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (86 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (86 loc) · 2.19 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "tracelayer"
version = "0.2.40"
description = "TraceLayer: agent-native software traceability system"
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
authors = [{ name = "carterlasalle" }]
keywords = [
"traceability",
"requirements",
"software-engineering",
"agents",
"ci",
"cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"typer>=0.12",
"pydantic>=2.7",
"tree-sitter>=0.23",
"tree-sitter-language-pack>=0.3",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/carterlasalle/tracelayer"
Repository = "https://github.com/carterlasalle/tracelayer"
Issues = "https://github.com/carterlasalle/tracelayer/issues"
Documentation = "https://github.com/carterlasalle/tracelayer#documentation"
[project.scripts]
trace = "tracelayer.cli:main"
tracelayer = "tracelayer.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tracelayer"]
[tool.hatch.build.targets.wheel.force-include]
"skills/traceability" = "tracelayer/_skills/traceability"
"adapters" = "tracelayer/_adapters"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/skills",
"/adapters",
"/docs",
"/tests",
"/scripts",
"/README.md",
"/CONTRIBUTING.md",
"/SECURITY.md",
"/LICENSE",
"/AGENTS.md",
"/pyproject.toml",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"coverage>=7.6",
"hypothesis>=6.100",
"ruff>=0.6",
"pip-audit>=2.10.1",
"vulture>=2.16",
"bandit>=1.9.4",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"src/tracelayer/cli.py" = ["B008"]