-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (41 loc) · 1.3 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "loopforge"
version = "0.5.3"
description = "Loop Engineering toolkit: lint, scaffold, and run autonomous agent loops against the six blocks a real loop needs."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Ying Chen" }]
keywords = ["loop-engineering", "ai-agents", "automation", "agentic", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/yingchen-coding/loopforge"
Issues = "https://github.com/yingchen-coding/loopforge/issues"
[project.scripts]
loopforge = "loopforge.cli:main"
[project.optional-dependencies]
dev = ["pytest>=7", "ruff>=0.5", "mypy>=1.8", "build", "twine"]
[tool.setuptools]
packages = ["loopforge"]
[tool.setuptools.package-data]
loopforge = ["templates/*"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true