-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (34 loc) · 1.18 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "shellpilot"
version = "0.11.1"
description = "A local-first AI shell harness for your terminal, powered by Ollama."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Lavindeep Dhillon", email = "lavindeepdhillon@gmail.com" }]
keywords = ["ai", "cli", "ollama", "shell", "local-first", "assistant"]
dependencies = ["rich>=13.7", "httpx>=0.27", "platformdirs>=4.2", "prompt-toolkit>=3.0"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "ruff>=0.4", "mypy>=1.10"]
[project.scripts]
shellpilot = "shellpilot.app:main"
[tool.hatch.build.targets.wheel]
packages = ["shellpilot"]
# Hatchling ships only .py by default; the builtin planning skill is a data
# file (SKILL.md) that must travel in the wheel for importlib.resources to
# resolve it from an installed package.
artifacts = ["shellpilot/skills/builtin/**/*.md"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.11"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]