26 lines
828 B
Markdown
26 lines
828 B
Markdown
# 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
|
|
```bash
|
|
python3 main.py
|
|
```
|
|
|
|
### Project Structure
|
|
- `main.py` - Main entry point with a simple `main()` function
|
|
- `pyproject.toml` - Project configuration and metadata
|
|
- `README.md` - Project documentation (currently minimal)
|
|
|
|
## Development Notes
|
|
|
|
- Python version requirement: >=3.13
|
|
- No external dependencies currently defined
|
|
- Use `python3` command (not `python`) to run scripts
|
|
- The project follows a simple structure with the main logic in `main.py` |