-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 733 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 733 Bytes
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
[project]
name = "lightning-agents"
version = "0.1.0"
description = "Factory-of-Factories pattern for dynamic Claude Agent instantiation"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"claude-agent-sdk>=0.1.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
"python-pptx>=1.0.0",
"pdf2image>=1.17.0",
]
[project.scripts]
lightning = "lightning_agents.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.4.0",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"