Files
SneakyCode/pyproject.toml
2026-03-11 12:40:59 -05:00

42 lines
804 B
TOML

[build-system]
requires = ["setuptools>=69.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sneakycode"
version = "0.1.0"
description = "A privacy-first, locally-running Python coding agent using local LLMs"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.5,<3",
"rich>=13.0",
"pyyaml>=6.0",
"httpx>=0.27",
"structlog>=24.0",
"textual>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.3",
]
[project.scripts]
sneakycode = "app.main:main"
[tool.setuptools.packages.find]
include = ["app*"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]