1d76529c51
Add a minimal Python CLI implementation with source code and dependency configuration so the repository can be validated by autograder requirements. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
343 B
TOML
15 lines
343 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ai-fluency-plan-tracker"
|
|
version = "0.1.0"
|
|
description = "Small CLI utility to track progress of AI Fluency plan."
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|