diff options
-rw-r--r-- | .github/workflows/main.yml | 1 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66c84de..1a2ee82 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,6 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - run: pip install pdoc + - run: pip install -r requirements.txt - run: pdoc -o docs/ --favicon "https://pictshare.net/e73ask.png" --logo "https://pictshare.net/sco723.png" --footer-text "\"Here's the plan - when someone uses a feature you don't understand, simply shoot them.\" - Tim Peters" discord # everything below is copied from the pdoc repo - run: tar --directory docs/ -hcf artifact.tar . diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6889a87 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +websockets~=10.3 +setuptools~=60.2.0 \ No newline at end of file |