828 B
828 B
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
This is a Python project called "aignorance" - a minimal Python application with a simple entry point in main.py
. The project uses Python 3.13+ and is configured using pyproject.toml
.
Commands
Running the Application
python3 main.py
Project Structure
main.py
- Main entry point with a simplemain()
functionpyproject.toml
- Project configuration and metadataREADME.md
- Project documentation (currently minimal)
Development Notes
- Python version requirement: >=3.13
- No external dependencies currently defined
- Use
python3
command (notpython
) to run scripts - The project follows a simple structure with the main logic in
main.py