-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (86 loc) · 2.67 KB
/
pyproject.toml
File metadata and controls
93 lines (86 loc) · 2.67 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
86
87
88
89
90
91
92
93
[project]
name = "simplicio-cli"
version = "0.5.3"
description = "Portable task-to-code pipeline that works with any LLM. Turn a one-line task into a verified code change — diff + test + verify loop. +55 pts on a 156-check benchmark, 21% faster, ~same tokens."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [{ name = "Wesley Simplicio", email = "wesleybob4@gmail.com" }]
keywords = [
"llm",
"ai",
"agent",
"code-generation",
"prompt-engineering",
"openrouter",
"openai",
"anthropic",
"claude",
"developer-tools",
"cli",
"rag",
"embeddings",
"verify-loop",
"task-automation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"sentence-transformers>=5.1.2",
"numpy>=2.0.2",
"anthropic>=0.105.2",
"openai>=2.38.0",
"simplicio-mapper>=0.6.3",
"simplicio-prompt>=1.12.1",
"httpx>=0.28.1",
"orjson>=3.11.5",
"diskcache>=5.6.3",
"libcst>=1.8.6",
]
[project.optional-dependencies]
bench = ["fpdf2>=2.8.4"]
# Offline-first in-process inference (Path 4). Pulls the llama.cpp Python
# bindings plus huggingface-hub to fetch the default Qwen2.5-Coder-1.5B GGUF.
local = ["llama-cpp-python>=0.3.23", "huggingface-hub>=1.8.0"]
[project.urls]
Homepage = "https://github.com/wesleysimplicio/simplicio-cli"
Repository = "https://github.com/wesleysimplicio/simplicio-cli"
Issues = "https://github.com/wesleysimplicio/simplicio-cli/issues"
Changelog = "https://github.com/wesleysimplicio/simplicio-cli/releases"
[project.scripts]
simplicio = "simplicio.cli:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["simplicio*"]
[tool.setuptools.package-data]
simplicio = [
"templates/*.md",
"templates/*.sh",
"templates/recipes/**/*.json",
"templates/recipes/**/*.yaml",
"templates/recipes/**/*.yml",
"templates/stacks/**/*",
"templates/stacks/*/tree/.gitignore",
"templates/stacks/*/tree/.eslintrc.json",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests/python"]