Skip to content

Commit 662bb79

Browse files
committed
Merge branch 'dev' into main
2 parents 96a899d + 09303b2 commit 662bb79

File tree

596 files changed

+13906
-13618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

596 files changed

+13906
-13618
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ jobs:
3535
run: curl -sSL https://install.python-poetry.org | python3 -
3636
- name: Install dependencies
3737
run: poetry install
38-
# FIXME: make this work
39-
# - name: Typecheck
40-
# run: poetry run tox -e typecheck
41-
# - name: Lint
42-
# run: poetry run tox -e lint
43-
# - name: Security
44-
# run: poetry run tox -e secure
38+
- name: Typecheck
39+
run: poetry run tox -e typecheck
40+
- name: Lint
41+
run: poetry run tox -e lint
42+
- name: Security
43+
run: poetry run tox -e secure
4544
- name: Test
4645
run: poetry run tox

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0a14
1+
0.1.0a15

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/make.bat

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@ECHO OFF
2+
3+
pushd %~dp0
4+
5+
REM Command file for Sphinx documentation
6+
7+
if "%SPHINXBUILD%" == "" (
8+
set SPHINXBUILD=sphinx-build
9+
)
10+
set SOURCEDIR=source
11+
set BUILDDIR=build
12+
13+
%SPHINXBUILD% >NUL 2>NUL
14+
if errorlevel 9009 (
15+
echo.
16+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
17+
echo.installed, then set the SPHINXBUILD environment variable to point
18+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
19+
echo.may add the Sphinx directory to PATH.
20+
echo.
21+
echo.If you don't have Sphinx installed, grab it from
22+
echo.https://www.sphinx-doc.org/
23+
exit /b 1
24+
)
25+
26+
if "%1" == "" goto help
27+
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29+
goto end
30+
31+
:help
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33+
34+
:end
35+
popd

docs/poetry.lock

Lines changed: 1051 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[build-system]
2+
requires = ["poetry-core"]
3+
build-backend = "poetry.core.masonry.api"
4+
5+
[tool.poetry]
6+
name = "docs"
7+
version = "0.1.0"
8+
description = ""
9+
authors = ["Niraj <niraj@polywrap.io>"]
10+
readme = "README.md"
11+
12+
[tool.poetry.dependencies]
13+
python = "^3.10"
14+
polywrap-msgpack = { path = "../packages/polywrap-msgpack", develop = true }
15+
polywrap-manifest = { path = "../packages/polywrap-manifest", develop = true }
16+
polywrap-core = { path = "../packages/polywrap-core", develop = true }
17+
polywrap-wasm = { path = "../packages/polywrap-wasm", develop = true }
18+
polywrap-plugin = { path = "../packages/polywrap-plugin", develop = true }
19+
polywrap-uri-resolvers = { path = "../packages/polywrap-uri-resolvers", develop = true }
20+
polywrap-client = { path = "../packages/polywrap-client", develop = true }
21+
polywrap-client-config-builder = { path = "../packages/polywrap-client-config-builder", develop = true }
22+
23+
[tool.poetry.group.dev.dependencies]
24+
sphinx = "^6.1.3"
25+
sphinx-rtd-theme = "^1.2.0"
26+

docs/source/conf.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Configuration file for the Sphinx documentation builder.
2+
#
3+
# For the full list of built-in configuration values, see the documentation:
4+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5+
6+
# -- Import projects ---------------------------------------------------------
7+
8+
9+
# -- Project information -----------------------------------------------------
10+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
11+
12+
project = 'polywrap-client'
13+
copyright = '2023, Niraj <niraj@polywrap.io>, Cesar <cesar@polywrap.io>'
14+
author = 'Niraj <niraj@polywrap.io>, Cesar <cesar@polywrap.io>'
15+
release = '0.1.0'
16+
17+
# -- General configuration ---------------------------------------------------
18+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
19+
20+
extensions = [
21+
"sphinx.ext.autodoc",
22+
"sphinx.ext.napoleon",
23+
"sphinx.ext.autosummary",
24+
"sphinx.ext.viewcode",
25+
]
26+
27+
templates_path = ['_templates']
28+
exclude_patterns = []
29+
30+
31+
32+
# -- Options for HTML output -------------------------------------------------
33+
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
34+
35+
html_theme = 'sphinx_rtd_theme'
36+
html_static_path = ['_static']

docs/source/index.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.. polywrap-client documentation master file, created by
2+
sphinx-quickstart on Mon Mar 20 14:56:45 2023.
3+
You can adapt this file completely to your liking, but it should at least
4+
contain the root `toctree` directive.
5+
6+
Welcome to polywrap-client's documentation!
7+
===========================================
8+
9+
.. toctree::
10+
:maxdepth: 2
11+
:caption: Contents:
12+
13+
polywrap-msgpack/modules.rst
14+
polywrap-manifest/modules.rst
15+
polywrap-core/modules.rst
16+
polywrap-wasm/modules.rst
17+
polywrap-plugin/modules.rst
18+
polywrap-uri-resolvers/modules.rst
19+
polywrap-client/modules.rst
20+
polywrap-client-config-builder/modules.rst
21+
22+
23+
24+
Indices and tables
25+
==================
26+
27+
* :ref:`genindex`
28+
* :ref:`modindex`
29+
* :ref:`search`
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from ..conf import *
2+
3+
import polywrap_client_config_builder
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
polywrap_client_config_builder
2+
==============================
3+
4+
.. toctree::
5+
:maxdepth: 4
6+
7+
polywrap_client_config_builder

0 commit comments

Comments
 (0)