26 lines
585 B
TOML
26 lines
585 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "didactopus"
|
|
version = "0.1.0"
|
|
description = "Didactopus: local-first AI-assisted autodidactic mastery platform"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [{name = "Wesley R. Elsberry"}]
|
|
dependencies = [
|
|
"pydantic>=2.7",
|
|
"pyyaml>=6.0",
|
|
"networkx>=3.2",
|
|
]
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=8.0", "ruff>=0.6"]
|
|
|
|
[project.scripts]
|
|
didactopus = "didactopus.main:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|