/pdoc-test

Primary LanguagePython

  1. Create virtualenv
python -m venv venv
  1. Activate virtualenv
source ./venv/bin/activate
  1. Install pdoc and GitPython
pip install pdoc GitPython
  1. Install package
pip install -e .
  1. See error when running pdoc against test_package
python -m pdoc test_package
  1. No error when running pdoc directly against module outside of package
python -m pdoc ./test.py