-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (77 loc) · 1.96 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "psycgod-sage"
version = "2.6.1"
description = "Local-first command wrapper for AI coding agents with compressed terminal output and privacy-safe proof metrics."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"joblib>=1.3",
"keyring>=25",
"numpy>=1.24.0",
"pandas>=2.0",
"PyYAML>=6",
"scikit-learn>=1.3",
"tiktoken>=0.7",
"websockets>=13.0",
]
license = "MIT"
license-files = ["LICENSE*"]
authors = [
{ name = "PsYcGoD" }
]
keywords = ["ai", "cli", "terminal", "debugging", "local assistant", "terminal agent"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities"
]
[project.optional-dependencies]
ml = [
"sentence-transformers>=3.0.0",
"faiss-cpu>=1.8.0",
"torch>=2.0.0",
]
ai = [
"anthropic>=0.40",
"boto3>=1.34",
"google-generativeai>=0.8",
"openai>=1.50",
"requests>=2.31",
]
all = [
"anthropic>=0.40",
"boto3>=1.34",
"google-generativeai>=0.8",
"openai>=1.50",
"requests>=2.31",
"sentence-transformers>=3.0.0",
"faiss-cpu>=1.8.0",
"torch>=2.0.0",
]
[project.scripts]
sage = "sage.cli:main"
[project.urls]
Homepage = "https://github.com/PsYcGoD/sage"
Repository = "https://github.com/PsYcGoD/sage"
Issues = "https://github.com/PsYcGoD/sage/issues"
Dashboard = "https://sage.api.marketingstudios.in/dashboard"
# The published package is the command wrapper only. The hosted dashboard is
# maintained separately and is not bundled into PyPI/npm.
[tool.setuptools.packages.find]
where = ["src"]
exclude = [
"sage.dashboard",
"sage.dashboard.*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-m 'not live' --ignore=tests/live --ignore=tests/tests"
markers = [
"live: spawns real CLIs or long-running processes; excluded by default and in CI",
]