fix: add runnable project files for ai-fluency task

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>
This commit is contained in:
RomanKurlygin
2026-05-28 11:25:03 +03:00
parent cebff9928d
commit 1d76529c51
10 changed files with 127 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
[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"]