Description:
Create the basic Python project structure with build tools, dependency management, and documentation framework.
Acceptance Criteria:
Files to Create:
├── pyproject.toml
├── setup.py (optional, for backward compatibility)
├── requirements.txt
├── requirements-dev.txt
├── .gitignore
├── README.md
├── src/
│ └── indexedcp/
│ └── __init__.py
├── tests/
│ └── __init__.py
├── docs/
└── examples/
Description:
Create the basic Python project structure with build tools, dependency management, and documentation framework.
Acceptance Criteria:
pyproject.tomlwith project metadatasrc/indexedcp/, tests, docs, examples__init__.pyfiles for package structurerequirements.txtandrequirements-dev.txtFiles to Create: