Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
This file provides guidance for Claude Code when working with the pyquante2 codebase.
Sign in to like and favorite skills
This file provides guidance for Claude Code when working with the pyquante2 codebase.
PyQuante2 is a Python quantum chemistry suite for developing and testing quantum chemistry methods. It includes implementations of Hartree-Fock (RHF, UHF), DFT, and MP2, with optional Cython extensions for performance-critical routines.
Status: Published on PyPI as
pyquante2 (current version: 0.2.0)
pyquante2/ ├── src/pyquante2/ # Main source code │ ├── basis/ # Gaussian basis sets (PGBF, CGBF) │ ├── cints/ # Cython/C integral routines │ ├── dft/ # Density functional theory │ ├── geo/ # Molecular geometry (atoms, molecules) │ ├── graphics/ # Visualization tools │ ├── grid/ # Numerical grids for DFT │ ├── hylleraas/ # Hylleraas variational methods │ ├── ints/ # Integral evaluation (one/two-electron) │ ├── pt/ # Perturbation theory (MP2) │ ├── scf/ # SCF solvers and Hamiltonians │ └── viewer/ # Molecular viewer ├── tests/ # Test suite ├── attic/ # Archived/deprecated code ├── docs/ # Documentation ├── CHANGELOG.md # Release history ├── VERSION_MANAGEMENT.md # Version bump checklist ├── FUTURE_TASKS.md # Planned improvements ├── CODE_REVIEW.md # Code quality findings └── TODO.md # Original task list
# Install with dev dependencies uv sync --extra dev # Run tests (preferred) make test # Or directly with pytest uv run pytest # Run tests with doctests uv run pytest --doctest-modules --ignore=attic # Build package for PyPI make clean # Clean old builds make build # Build wheel + source distribution uv run twine check dist/* # Verify package # Publish to PyPI (see VERSION_MANAGEMENT.md first!) make install_test # Upload to TestPyPI make install # Upload to PyPI
tests/ directory using pytestmake test to run all tests including doctestsmolecule, atom, cgbf)src/pyquante2/cints/ are optional but improve performanceattic/ directory contains archived code - ignore when searchinguv for package management (uv.lock present)VERSION_MANAGEMENT.md checklistFUTURE_TASKS.md