-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (76 loc) · 2.46 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
81
82
83
84
85
[project]
name = "autoforge-health"
version = "0.2.0"
description = "Measure, recommend, and auto-fix repository health across Python, JS/TS, Go, and Rust — the only OSS closed-loop improvement engine."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "najimino Inc." },
]
keywords = [
"health-score", "code-quality", "linter", "auto-fix", "AI-readiness",
"polyglot", "leaderboard", "docstring", "JSDoc", "godoc", "rustdoc",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = [
"anthropic>=0.52.0,<2",
"httpx>=0.27.0,<1",
"pydantic>=2.0.0,<3",
"feedparser>=6.0.0,<7",
"pyyaml>=6.0.0,<7",
]
[project.urls]
Homepage = "https://github.com/shigel/autoforge"
Repository = "https://github.com/shigel/autoforge"
Issues = "https://github.com/shigel/autoforge/issues"
Documentation = "https://github.com/shigel/autoforge/blob/main/README.md"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"ruff>=0.8.0",
"build>=1.0.0",
]
[project.scripts]
autoforge = "autoforge.cli:main"
autoforge-tools = "autoforge.harness.tools:main"
autoforge-solve = "autoforge.harness.solve:main"
autoforge-init = "autoforge.harness.init:main"
autoforge-run-goal = "autoforge.harness.run_goal:main"
autoforge-improve = "autoforge.harness.improve:main"
autoforge-score = "autoforge.harness.score:main"
autoforge-history = "autoforge.harness.history:main"
autoforge-compare = "autoforge.harness.compare:main"
autoforge-leaderboard = "autoforge.harness.leaderboard:main"
autoforge-suggest = "autoforge.harness.suggest:main"
autoforge-fix = "autoforge.harness.fix:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["autoforge*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"ignore::pytest.PytestCollectionWarning",
]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501", "E741", "UP042"]