-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openarmature"
version = "0.3.0"
description = "Workflow framework for LLM pipelines and tool-calling agents."
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Chris Colinsky", email = "[email protected]" }]
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"pydantic>=2.7",
]
[project.urls]
Repository = "https://github.com/LunarCommand/openarmature-python"
Specification = "https://github.com/LunarCommand/openarmature-spec"
[tool.openarmature]
spec_version = "0.2.0"
[dependency-groups]
dev = [
"pre-commit>=3.7",
"pyright>=1.1.360",
"pytest>=8.2",
"pytest-asyncio>=0.23",
"pyyaml>=6.0",
"ruff>=0.5",
"types-pyyaml",
]
[tool.hatch.build.targets.wheel]
packages = ["src/openarmature"]
[tool.pyright]
include = ["src", "tests"]
pythonVersion = "3.12"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
[tool.ruff]
line-length = 110
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"