-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 2 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 2 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
[project]
name = "nighthawk-python"
version = "0.9.0"
description = "A Python library where Python controls flow and LLMs or coding agents reason within constrained Natural blocks."
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Kurusugawa Computer Inc.", email = "oss@kurusugawa.jp"},
]
keywords = ["llm", "ai", "natural-language", "dsl", "pydantic-ai", "openai", "anthropic", "structured-output", "agent", "prompt-engineering"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"headson>=0.16.1",
"pydantic>=2",
"pydantic-ai-slim>=1.68",
"pyyaml>=6",
"tenacity>=9",
"tiktoken>=0.12",
]
[project.urls]
Repository = "https://github.com/kurusugawa-computer/nighthawk-python"
Documentation = "https://kurusugawa-computer.github.io/nighthawk-python/"
Changelog = "https://github.com/kurusugawa-computer/nighthawk-python/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/kurusugawa-computer/nighthawk-python/issues"
[project.optional-dependencies]
claude-code-sdk = [
"claude-agent-sdk==0.1.48",
]
claude-code-cli = [
"mcp>=1.26",
]
codex = [
"mcp>=1.26",
]
[dependency-groups]
dev = [
"logfire>=4",
"pydantic-ai-slim[openai]>=1.68",
"pyright>=1.1",
"pytest>=9",
"pytest-asyncio>=1.3.0",
"ruff>=0.15",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9",
"mkdocstrings[python]>=0.29",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/nighthawk"]
[tool.ruff]
target-version = "py312"
line-length = 150
[tool.ruff.lint]
extend-select = ["I", "UP", "B", "SIM", "N"]
[tool.ruff.lint.isort]
known-first-party = ["nighthawk"]