-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "forge-installer"
version = "3.0.0"
description = "Forge harness installer — distributes SDD agents, skills, commands, and config to Claude Code / OpenCode / Codex target repos"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "iNBest" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS",
]
dependencies = [
"tomli_w>=1.0", # TOML writing (read is stdlib tomllib in 3.11+)
]
[project.optional-dependencies]
interactive = ["questionary>=2.0"] # only required for `python -m installer install` (interactive CLI)
dev = ["pytest>=7", "pytest-cov>=4"]
[project.scripts]
forge-install = "installer.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["installer*"]
exclude = ["installer.tests*"]
[tool.pytest.ini_options]
testpaths = ["installer/tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "ARG", "RUF"]