-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
68 lines (62 loc) · 1.74 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "saar"
version = "0.6.0"
description = "Extract the essence of your codebase. Auto-generate AGENTS.md, CLAUDE.md, .cursorrules and more."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "OpenCodeIntel", email = "dev@getsaar.com" },
]
keywords = [
"ai", "codebase", "static-analysis", "claude", "cursor",
"copilot", "code-intelligence", "tree-sitter", "developer-tools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"tree-sitter>=0.25.0,<0.26.0",
"tree-sitter-python>=0.25.0,<0.26.0",
"tree-sitter-javascript>=0.25.0,<0.26.0",
"typer>=0.12.0",
"rich>=13.0.0",
"questionary>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.5.0",
"numpy>=1.24.0",
]
enrich = [
# AI post-processing of interview answers -- requires ANTHROPIC_API_KEY
"anthropic>=0.80.0",
]
rl = [
"numpy>=1.24.0",
]
[project.scripts]
saar = "saar.cli:app"
[project.urls]
Homepage = "https://getsaar.com"
Repository = "https://github.com/OpenCodeIntel/saar"
Issues = "https://github.com/OpenCodeIntel/saar/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100