-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (60 loc) · 2.11 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend="setuptools.build_meta"
[project]
name="sutrakit"
version="0.1.40"
description="Sutrakit is an AI-powered code manager for coding agents. It spawns agents for multiple projects, connects repos through cross-indexing, and builds dependency graphs for better change suggestions. By automating planning and updates, it helps teams reduce development cost, save time, and improve productivity."
readme="README.md"
license = {file = "LICENSE"}
authors = [
{name="Sutra Graph"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["ai", "cli", "code-analysis", "code-completion", "code-manager", "cost-optimization", "code-automation", "coding-agent", "cross-repository-intelligence", "roadmap-planning"]
requires-python=">=3.11"
dependencies = [
"pydantic==2.11.5",
"loguru==0.7.3",
"onnxruntime==1.22.0",
"numpy==2.2.6",
"tokenizers==0.21.1",
"sqlite-vec==0.1.6",
"pysqlite3-binary==0.5.4",
"requests==2.32.3",
"trafilatura==2.0.0",
"markdownify==1.1.0",
"tree-sitter>=0.25.1",
"tree-sitter-language-pack>=0.9.0",
"setuptools==80.9.0",
"prompt_toolkit==3.0.48",
"rich==14.1.0",
"baml-py==0.211.0",
]
[project.urls]
Homepage="https://github.com/sutragraph/sutracli"
Repository="https://github.com/sutragraph/sutracli"
Issues="https://github.com/sutragraph/sutracli/issues"
[project.optional-dependencies]
dev = [
"pre-commit>=3.0.0",
]
[project.scripts]
sutrakit="cli:main"
sutrakit-setup="cli:setup_main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src", "."]
include = ["*"]
exclude = ["dist*", "build*"]