mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
fa7018c1b9
- Set up src/basic_memory package - Added initial test structure - Configure modern Python tooling (black, ruff, pytest) - Added comprehensive README - Set dependencies in pyproject.toml
37 lines
737 B
TOML
37 lines
737 B
TOML
[project]
|
|
name = "basic-memory"
|
|
version = "0.1.0"
|
|
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { text = "AGPL-3.0-or-later" }
|
|
dependencies = [
|
|
"sqlalchemy>=2.0.0",
|
|
"pyyaml>=6.0.1",
|
|
"rich>=13.7.0",
|
|
"typer>=0.9.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.3",
|
|
"pytest-cov>=4.1.0",
|
|
"black>=23.11.0",
|
|
"ruff>=0.1.6",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--cov=basic_memory"
|
|
testpaths = ["tests"]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py312"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312" |