-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 1.75 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
[build-system]
requires = ["uv_build>=0.10.2,<0.11.0"]
build-backend = "uv_build"
[project]
name = "pb-spec"
version = "0.8.6"
description = "Plan-Build Spec (pb-spec): A CLI tool for managing AI coding assistant skills"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
authors = [
{ name = "Bob Liu", email = "akagi201@gmail.com" },
]
keywords = ["cli", "ai", "coding-assistant", "skills", "plan-build", "tdd"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"click>=8.3.1",
]
[project.urls]
Homepage = "https://github.com/longcipher/pb-spec"
Repository = "https://github.com/longcipher/pb-spec"
Issues = "https://github.com/longcipher/pb-spec/issues"
[project.scripts]
pb-spec = "pb_spec.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"behave>=1.3.3",
"pytest>=9.0.2",
"ruff>=0.15.7",
"ty>=0.0.24",
]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"W", # pycodestyle warnings
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = ["E501"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.ty.environment]
python-version = "3.12"