33 lines
582 B
TOML
33 lines
582 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "javis-ai"
|
|
version = "0.0.0"
|
|
description = "Safe, local-first personal assistant project scaffold"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
javis = "javis.interface.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.12,<1",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["B", "E", "F", "I", "UP"]
|