-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docs, add classification diagram (#57)
* Convert classification table to Mermaid diagram * Generate PyPI-compatible README * Update docs
- Loading branch information
Showing
12 changed files
with
163 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,33 @@ | ||
FROM makukha/multipython:latest | ||
|
||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ | ||
--mount=type=cache,target=/var/lib/apt,sharing=locked \ | ||
--mount=type=bind,from=dattached/bootstrap,dst=/b \ | ||
<<EOT | ||
RUN --mount=type=bind,from=dattached/bootstrap,dst=/b <<EOT | ||
apt-get update | ||
bash /b/debian-apt-install-devtools.sh | ||
rm -rf /tmp/* /var/tmp/* | ||
rm -rf /var/lib/apt/lists/* | ||
EOT | ||
|
||
RUN --mount=type=cache,dst=/root/.cache/pip \ | ||
pip install uv | ||
RUN <<EOT | ||
apt-get update | ||
apt-get install -y --no-install-recommends \ | ||
chromium \ | ||
nodejs \ | ||
npm | ||
rm -rf /var/lib/apt/lists/* | ||
npm install -g @mermaid-js/mermaid-cli | ||
EOT | ||
|
||
COPY .dev/requirements.*.txt /tmp/ | ||
COPY <<EOF /root/puppeteer-config.json | ||
{ | ||
"executablePath": "/usr/bin/chromium", | ||
"args": [ | ||
"--no-sandbox" | ||
] | ||
} | ||
EOF | ||
|
||
RUN --mount=type=cache,dst=/root/.cache/uv \ | ||
uv pip install --system -r /tmp/requirements.dev.txt -r /tmp/requirements.doc.txt | ||
COPY --from=ghcr.io/astral-sh/uv /uv /uvx /bin/ | ||
COPY .dev/requirements.*.txt /tmp/ | ||
RUN uv pip install --system -r /tmp/requirements.dev.txt -r /tmp/requirements.doc.txt | ||
|
||
WORKDIR /project | ||
EXPOSE 8000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.7.0' | ||
__version__ = '0.7.1' |