doweb 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- doweb-0.0.1/.devcontainer/Dockerfile +11 -0
- doweb-0.0.1/.devcontainer/devcontainer.json +20 -0
- doweb-0.0.1/.github/dependabot.yml +11 -0
- doweb-0.0.1/.github/release-drafter.yml +67 -0
- doweb-0.0.1/.github/workflows/changelog.yml +18 -0
- doweb-0.0.1/.github/workflows/release-drafter.yml +37 -0
- doweb-0.0.1/.github/workflows/release.yml +51 -0
- doweb-0.0.1/.github/workflows/test_code.yml +56 -0
- doweb-0.0.1/.gitignore +135 -0
- doweb-0.0.1/.pre-commit-config.yaml +68 -0
- doweb-0.0.1/CHANGELOG.md +118 -0
- doweb-0.0.1/LICENSE +21 -0
- doweb-0.0.1/PKG-INFO +117 -0
- doweb-0.0.1/README.md +71 -0
- doweb-0.0.1/docs/Makefile +29 -0
- doweb-0.0.1/docs/_static/css/custom.css +16 -0
- doweb-0.0.1/docs/_static/doweb.png +0 -0
- doweb-0.0.1/docs/conf.py +89 -0
- doweb-0.0.1/docs/index.rst +11 -0
- doweb-0.0.1/docs/make.bat +36 -0
- doweb-0.0.1/docs/markdown.md +6 -0
- doweb-0.0.1/docs/rst.rst +17 -0
- doweb-0.0.1/pyproject.toml +142 -0
- doweb-0.0.1/setup.cfg +4 -0
- doweb-0.0.1/src/doweb/__init__.py +1 -0
- doweb-0.0.1/src/doweb/api/browser.py +37 -0
- doweb-0.0.1/src/doweb/api/viewer.py +82 -0
- doweb-0.0.1/src/doweb/browser.py +55 -0
- doweb-0.0.1/src/doweb/config.py +21 -0
- doweb-0.0.1/src/doweb/custom.css +0 -0
- doweb-0.0.1/src/doweb/default.py +3 -0
- doweb-0.0.1/src/doweb/layout_server.py +930 -0
- doweb-0.0.1/src/doweb/py.typed +0 -0
- doweb-0.0.1/src/doweb/server_jupyter.py +60 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.bundle.min.js +7 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.bundle.min.js.map +1 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.min.css +6 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.min.css.map +1 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.min.js +7 -0
- doweb-0.0.1/src/doweb/static/bootstrap/bootstrap.min.js.map +1 -0
- doweb-0.0.1/src/doweb/static/client.css +134 -0
- doweb-0.0.1/src/doweb/static/custom.css +11905 -0
- doweb-0.0.1/src/doweb/static/img/doweb.png +0 -0
- doweb-0.0.1/src/doweb/static/viewer.js +905 -0
- doweb-0.0.1/src/doweb/templates/browser.html +27 -0
- doweb-0.0.1/src/doweb/templates/nav.html +16 -0
- doweb-0.0.1/src/doweb/templates/viewer.html +186 -0
- doweb-0.0.1/src/doweb/viewer.py +41 -0
- doweb-0.0.1/src/doweb.egg-info/PKG-INFO +117 -0
- doweb-0.0.1/src/doweb.egg-info/SOURCES.txt +52 -0
- doweb-0.0.1/src/doweb.egg-info/dependency_links.txt +1 -0
- doweb-0.0.1/src/doweb.egg-info/requires.txt +38 -0
- doweb-0.0.1/src/doweb.egg-info/top_level.txt +1 -0
- doweb-0.0.1/tests/test_sample.py +2 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"image": "mcr.microsoft.com/devcontainers/universal:2",
|
|
3
|
+
"hostRequirements": {
|
|
4
|
+
"cpus": 2
|
|
5
|
+
},
|
|
6
|
+
"waitFor": "onCreateCommand",
|
|
7
|
+
"updateContentCommand": "make install",
|
|
8
|
+
"postCreateCommand": "",
|
|
9
|
+
"customizations": {
|
|
10
|
+
"codespaces": {
|
|
11
|
+
"openFiles": []
|
|
12
|
+
},
|
|
13
|
+
"vscode": {
|
|
14
|
+
"extensions": [
|
|
15
|
+
"ms-toolsai.jupyter",
|
|
16
|
+
"ms-python.python"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
name-template: 'v$RESOLVED_VERSION'
|
|
2
|
+
tag-template: 'v$RESOLVED_VERSION'
|
|
3
|
+
change-template: '- $TITLE [#$NUMBER](https://github.com/gdsfactory/doweb/pull/$NUMBER)'
|
|
4
|
+
template: |
|
|
5
|
+
# What's Changed
|
|
6
|
+
|
|
7
|
+
$CHANGES
|
|
8
|
+
|
|
9
|
+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
|
|
10
|
+
|
|
11
|
+
categories:
|
|
12
|
+
- title: 'Breaking'
|
|
13
|
+
label: 'breaking'
|
|
14
|
+
- title: 'New'
|
|
15
|
+
labels:
|
|
16
|
+
- 'enhancement'
|
|
17
|
+
- 'feature'
|
|
18
|
+
- title: 'Bug Fixes'
|
|
19
|
+
label: 'bug'
|
|
20
|
+
- title: 'Maintenance'
|
|
21
|
+
label: 'maintenance'
|
|
22
|
+
- title: 'Documentation'
|
|
23
|
+
label: 'documentation'
|
|
24
|
+
- title: 'Other changes'
|
|
25
|
+
- title: 'Dependency Updates'
|
|
26
|
+
label: 'dependencies'
|
|
27
|
+
collapse-after: 5
|
|
28
|
+
|
|
29
|
+
# Change major/breaking to major and enhancement/minor to minor after v1.0
|
|
30
|
+
version-resolver:
|
|
31
|
+
minor:
|
|
32
|
+
labels:
|
|
33
|
+
- 'breaking'
|
|
34
|
+
patch:
|
|
35
|
+
labels:
|
|
36
|
+
- 'enhancement'
|
|
37
|
+
- 'bug'
|
|
38
|
+
- 'maintenance'
|
|
39
|
+
- 'documentation'
|
|
40
|
+
- 'dependencies'
|
|
41
|
+
- 'security'
|
|
42
|
+
default: patch
|
|
43
|
+
|
|
44
|
+
exclude-labels:
|
|
45
|
+
- 'github_actions'
|
|
46
|
+
|
|
47
|
+
autolabeler:
|
|
48
|
+
- label: 'documentation'
|
|
49
|
+
files:
|
|
50
|
+
- '*.md'
|
|
51
|
+
branch:
|
|
52
|
+
- '/docs-.+/'
|
|
53
|
+
- label: 'bug'
|
|
54
|
+
branch:
|
|
55
|
+
- '/^fix-.+/'
|
|
56
|
+
title:
|
|
57
|
+
- '/^fix/i'
|
|
58
|
+
- label: 'enhancement'
|
|
59
|
+
branch:
|
|
60
|
+
- '/^feature-.+/'
|
|
61
|
+
- '/^add-.+/'
|
|
62
|
+
- '/^improve-.+/'
|
|
63
|
+
title:
|
|
64
|
+
- '/^add\s/i'
|
|
65
|
+
- label: 'github_actions'
|
|
66
|
+
files:
|
|
67
|
+
- '.github/**/*.yml'
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: Update Changelog
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types: [ closed ]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
changelog:
|
|
9
|
+
name: Update changelog
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
with:
|
|
14
|
+
ref: main
|
|
15
|
+
- uses: rhysd/changelog-from-release/action@v3
|
|
16
|
+
with:
|
|
17
|
+
file: CHANGELOG.md
|
|
18
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Release Drafter and Labels
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
types: [edited, opened, reopened, synchronize, unlabeled, labeled]
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
update_release_draft:
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
pull-requests: write
|
|
18
|
+
runs-on: ubuntu-latest
|
|
19
|
+
steps:
|
|
20
|
+
# Drafts your next Release notes as Pull Requests are merged into "master"
|
|
21
|
+
- uses: release-drafter/release-drafter@v6
|
|
22
|
+
env:
|
|
23
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
24
|
+
require_label:
|
|
25
|
+
if: github.event.pull_request
|
|
26
|
+
needs: update_release_draft
|
|
27
|
+
runs-on: ubuntu-latest
|
|
28
|
+
permissions:
|
|
29
|
+
issues: write
|
|
30
|
+
pull-requests: write
|
|
31
|
+
steps:
|
|
32
|
+
- uses: mheap/github-action-required-labels@v5
|
|
33
|
+
with:
|
|
34
|
+
mode: minimum
|
|
35
|
+
count: 1
|
|
36
|
+
labels: "breaking, bug, github_actions, documentation, dependencies, enhancement, feature, maintenance, security"
|
|
37
|
+
add_comment: true
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
name: Release PyPI, installers and docker container
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags: "v*"
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
release_pypi:
|
|
9
|
+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v4
|
|
13
|
+
- name: Set up Python
|
|
14
|
+
uses: actions/setup-python@v5
|
|
15
|
+
with:
|
|
16
|
+
python-version: 3.x
|
|
17
|
+
cache-dependency-path: pyproject.toml
|
|
18
|
+
- name: Install dependencies
|
|
19
|
+
run: |
|
|
20
|
+
python -m pip install --upgrade pip
|
|
21
|
+
pip install setuptools wheel twine
|
|
22
|
+
- name: Build and publish
|
|
23
|
+
env:
|
|
24
|
+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
|
25
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
26
|
+
run: |
|
|
27
|
+
rm -rf dist
|
|
28
|
+
python -m pip install build
|
|
29
|
+
python -m build
|
|
30
|
+
twine upload dist/*
|
|
31
|
+
|
|
32
|
+
# release_docker:
|
|
33
|
+
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
|
|
34
|
+
# runs-on: ubuntu-latest
|
|
35
|
+
# steps:
|
|
36
|
+
# - name: Set up QEMU
|
|
37
|
+
# uses: docker/setup-qemu-action@v2
|
|
38
|
+
# - name: Set up Docker Buildx
|
|
39
|
+
# uses: docker/setup-buildx-action@v2
|
|
40
|
+
# - name: Login to DockerHub
|
|
41
|
+
# uses: docker/login-action@v2
|
|
42
|
+
# with:
|
|
43
|
+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
44
|
+
# password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
45
|
+
# - name: Build and push
|
|
46
|
+
# id: docker_build
|
|
47
|
+
# uses: docker/build-push-action@v4
|
|
48
|
+
# with:
|
|
49
|
+
# push: true
|
|
50
|
+
# tags: joamatab/doweb:latest,joamatab/doweb:0.0.1
|
|
51
|
+
# file: .devcontainer/Dockerfile
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
name: Test pre-commit, code and docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- main
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
pre-commit:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v4
|
|
14
|
+
- uses: actions/setup-python@v5
|
|
15
|
+
- uses: pre-commit/action@v3.0.1
|
|
16
|
+
test_code:
|
|
17
|
+
needs: [pre-commit]
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
strategy:
|
|
20
|
+
max-parallel: 12
|
|
21
|
+
matrix:
|
|
22
|
+
python-version: ["3.11"]
|
|
23
|
+
os: [ubuntu-latest]
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v4
|
|
26
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
27
|
+
uses: actions/setup-python@v5
|
|
28
|
+
with:
|
|
29
|
+
python-version: ${{ matrix.python-version }}
|
|
30
|
+
cache: "pip"
|
|
31
|
+
cache-dependency-path: pyproject.toml
|
|
32
|
+
- name: Install dependencies
|
|
33
|
+
run: |
|
|
34
|
+
pip install -e .[tests]
|
|
35
|
+
- name: Test with pytest
|
|
36
|
+
run: pytest
|
|
37
|
+
test_code_coverage:
|
|
38
|
+
runs-on: ubuntu-latest
|
|
39
|
+
needs: [pre-commit]
|
|
40
|
+
steps:
|
|
41
|
+
- uses: actions/checkout@v4
|
|
42
|
+
- name: Set up Python
|
|
43
|
+
uses: actions/setup-python@v5
|
|
44
|
+
with:
|
|
45
|
+
python-version: '3.11'
|
|
46
|
+
- name: Install dependencies
|
|
47
|
+
run: |
|
|
48
|
+
pip install -e .[tests]
|
|
49
|
+
- name: Test with pytest
|
|
50
|
+
run: |
|
|
51
|
+
pytest --cov=doweb tests
|
|
52
|
+
- name: Upload coverage to Codecov
|
|
53
|
+
uses: codecov/codecov-action@v4
|
|
54
|
+
with:
|
|
55
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
56
|
+
fail_ci_if_error: false
|
doweb-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
extra/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
*$py.class
|
|
6
|
+
|
|
7
|
+
# C extensions
|
|
8
|
+
*.so
|
|
9
|
+
|
|
10
|
+
# Distribution / packaging
|
|
11
|
+
.Python
|
|
12
|
+
build/
|
|
13
|
+
develop-eggs/
|
|
14
|
+
dist/
|
|
15
|
+
downloads/
|
|
16
|
+
eggs/
|
|
17
|
+
.eggs/
|
|
18
|
+
lib/
|
|
19
|
+
lib64/
|
|
20
|
+
parts/
|
|
21
|
+
sdist/
|
|
22
|
+
var/
|
|
23
|
+
wheels/
|
|
24
|
+
pip-wheel-metadata/
|
|
25
|
+
share/python-wheels/
|
|
26
|
+
*.egg-info/
|
|
27
|
+
.installed.cfg
|
|
28
|
+
*.egg
|
|
29
|
+
MANIFEST
|
|
30
|
+
|
|
31
|
+
# PyInstaller
|
|
32
|
+
# Usually these files are written by a python script from a template
|
|
33
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
34
|
+
*.manifest
|
|
35
|
+
*.spec
|
|
36
|
+
|
|
37
|
+
# Installer logs
|
|
38
|
+
pip-log.txt
|
|
39
|
+
pip-delete-this-directory.txt
|
|
40
|
+
|
|
41
|
+
# Unit test / coverage reports
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
.nox/
|
|
45
|
+
.coverage
|
|
46
|
+
.coverage.*
|
|
47
|
+
.cache
|
|
48
|
+
nosetests.xml
|
|
49
|
+
coverage.xml
|
|
50
|
+
*.cover
|
|
51
|
+
*.py,cover
|
|
52
|
+
.hypothesis/
|
|
53
|
+
.pytest_cache/
|
|
54
|
+
|
|
55
|
+
# Translations
|
|
56
|
+
*.mo
|
|
57
|
+
*.pot
|
|
58
|
+
|
|
59
|
+
# Django stuff:
|
|
60
|
+
*.log
|
|
61
|
+
local_settings.py
|
|
62
|
+
db.sqlite3
|
|
63
|
+
db.sqlite3-journal
|
|
64
|
+
|
|
65
|
+
# Flask stuff:
|
|
66
|
+
instance/
|
|
67
|
+
.webassets-cache
|
|
68
|
+
|
|
69
|
+
# Scrapy stuff:
|
|
70
|
+
.scrapy
|
|
71
|
+
|
|
72
|
+
# Sphinx documentation
|
|
73
|
+
docs/_build/
|
|
74
|
+
|
|
75
|
+
# PyBuilder
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
.python-version
|
|
87
|
+
|
|
88
|
+
# pipenv
|
|
89
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
90
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
91
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
92
|
+
# install all needed dependencies.
|
|
93
|
+
#Pipfile.lock
|
|
94
|
+
|
|
95
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
96
|
+
__pypackages__/
|
|
97
|
+
|
|
98
|
+
# Celery stuff
|
|
99
|
+
celerybeat-schedule
|
|
100
|
+
celerybeat.pid
|
|
101
|
+
|
|
102
|
+
# SageMath parsed files
|
|
103
|
+
*.sage.py
|
|
104
|
+
|
|
105
|
+
# Environments
|
|
106
|
+
.env
|
|
107
|
+
.venv
|
|
108
|
+
env/
|
|
109
|
+
venv/
|
|
110
|
+
ENV/
|
|
111
|
+
env.bak/
|
|
112
|
+
venv.bak/
|
|
113
|
+
|
|
114
|
+
# Spyder project settings
|
|
115
|
+
.spyderproject
|
|
116
|
+
.spyproject
|
|
117
|
+
|
|
118
|
+
# Rope project settings
|
|
119
|
+
.ropeproject
|
|
120
|
+
|
|
121
|
+
# mkdocs documentation
|
|
122
|
+
/site
|
|
123
|
+
|
|
124
|
+
# mypy
|
|
125
|
+
.mypy_cache/
|
|
126
|
+
.dmypy.json
|
|
127
|
+
dmypy.json
|
|
128
|
+
|
|
129
|
+
# Pyre type checker
|
|
130
|
+
.pyre/
|
|
131
|
+
|
|
132
|
+
#css/bootstrap/npm
|
|
133
|
+
package-lock.json
|
|
134
|
+
package.json
|
|
135
|
+
node_modules
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
3
|
+
rev: "v4.6.0"
|
|
4
|
+
hooks:
|
|
5
|
+
- id: check-added-large-files
|
|
6
|
+
exclude: |
|
|
7
|
+
(?x)^(
|
|
8
|
+
dodata/docs/_static/.*
|
|
9
|
+
)$
|
|
10
|
+
- id: check-case-conflict
|
|
11
|
+
- id: check-merge-conflict
|
|
12
|
+
- id: check-symlinks
|
|
13
|
+
- id: check-yaml
|
|
14
|
+
- id: debug-statements
|
|
15
|
+
# - id: end-of-file-fixer
|
|
16
|
+
# - id: mixed-line-ending
|
|
17
|
+
# - id: name-tests-test
|
|
18
|
+
# args: ["--pytest-test-first"]
|
|
19
|
+
# - id: trailing-whitespace
|
|
20
|
+
|
|
21
|
+
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
|
22
|
+
rev: "v0.6.8"
|
|
23
|
+
hooks:
|
|
24
|
+
- id: ruff
|
|
25
|
+
- repo: https://github.com/djlint/djLint
|
|
26
|
+
rev: v1.35.2
|
|
27
|
+
hooks:
|
|
28
|
+
- id: djlint-reformat-jinja
|
|
29
|
+
files: "\\.html"
|
|
30
|
+
types_or: ['html']
|
|
31
|
+
exclude: |
|
|
32
|
+
(?x)^(
|
|
33
|
+
src/doweb/static/bootstrap/.*
|
|
34
|
+
)$
|
|
35
|
+
- id: djlint-jinja
|
|
36
|
+
files: "\\.html"
|
|
37
|
+
types_or: ['html']
|
|
38
|
+
exclude: |
|
|
39
|
+
(?x)^(
|
|
40
|
+
src/doweb/static/bootstrap/.*
|
|
41
|
+
)$
|
|
42
|
+
- repo: https://github.com/shellcheck-py/shellcheck-py
|
|
43
|
+
rev: v0.10.0.1
|
|
44
|
+
hooks:
|
|
45
|
+
- id: shellcheck
|
|
46
|
+
|
|
47
|
+
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
48
|
+
rev: v2.14.0
|
|
49
|
+
hooks:
|
|
50
|
+
- id: pretty-format-toml
|
|
51
|
+
args: [--autofix]
|
|
52
|
+
|
|
53
|
+
- repo: https://github.com/codespell-project/codespell
|
|
54
|
+
rev: v2.3.0
|
|
55
|
+
hooks:
|
|
56
|
+
- id: codespell
|
|
57
|
+
additional_dependencies:
|
|
58
|
+
- tomli
|
|
59
|
+
exclude: |
|
|
60
|
+
(?x)^(
|
|
61
|
+
src/doweb/static/bootstrap/.*
|
|
62
|
+
)$
|
|
63
|
+
|
|
64
|
+
- repo: https://github.com/kynan/nbstripout
|
|
65
|
+
rev: 0.7.1
|
|
66
|
+
hooks:
|
|
67
|
+
- id: nbstripout
|
|
68
|
+
files: ".ipynb"
|
doweb-0.0.1/CHANGELOG.md
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
<a name="v2.0.4"></a>
|
|
2
|
+
# [v2.0.4](https://github.com/gdsfactory/doweb/releases/tag/v2.0.4) - 11 Aug 2024
|
|
3
|
+
|
|
4
|
+
# What's Changed
|
|
5
|
+
|
|
6
|
+
## Bug Fixes
|
|
7
|
+
|
|
8
|
+
- fix reload not updating frontend [#54](https://github.com/gdsfactory/doweb/pull/54)
|
|
9
|
+
|
|
10
|
+
**Full Changelog**: https://github.com/gdsfactory/doweb/compare/v2.0.3...v2.0.4
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
[Changes][v2.0.4]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<a name="v2.0.3"></a>
|
|
17
|
+
# [v2.0.3](https://github.com/gdsfactory/doweb/releases/tag/v2.0.3) - 16 Jul 2024
|
|
18
|
+
|
|
19
|
+
# What's Changed
|
|
20
|
+
|
|
21
|
+
## New
|
|
22
|
+
|
|
23
|
+
- add html ids to clear rulers, zoom fit, and reload buttons [#53](https://github.com/gdsfactory/doweb/pull/53)
|
|
24
|
+
|
|
25
|
+
**Full Changelog**: https://github.com/gdsfactory/doweb/compare/v2.0.2...v2.0.3
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
[Changes][v2.0.3]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<a name="v2.0.2"></a>
|
|
32
|
+
# [v2.0.2](https://github.com/gdsfactory/doweb/releases/tag/v2.0.2) - 16 Jul 2024
|
|
33
|
+
|
|
34
|
+
# What's Changed
|
|
35
|
+
|
|
36
|
+
## New
|
|
37
|
+
|
|
38
|
+
- Reload Button [#52](https://github.com/gdsfactory/doweb/pull/52)
|
|
39
|
+
|
|
40
|
+
## Dependency Updates
|
|
41
|
+
|
|
42
|
+
- Bump docutils from 0.21.1 to 0.21.2 [#48](https://github.com/gdsfactory/doweb/pull/48)
|
|
43
|
+
- Bump sphinx-book-theme from 1.1.2 to 1.1.3 [#50](https://github.com/gdsfactory/doweb/pull/50)
|
|
44
|
+
|
|
45
|
+
**Full Changelog**: https://github.com/gdsfactory/doweb/compare/v2.0.1...v2.0.2
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
[Changes][v2.0.2]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
<a name="v2.0.1"></a>
|
|
52
|
+
# [v2.0.1](https://github.com/gdsfactory/doweb/releases/tag/v2.0.1) - 16 Jul 2024
|
|
53
|
+
|
|
54
|
+
# What's Changed
|
|
55
|
+
|
|
56
|
+
* No changes
|
|
57
|
+
|
|
58
|
+
**Full Changelog**: https://github.com/gdsfactory/doweb/compare/v2.0.0...v2.0.1
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
[Changes][v2.0.1]
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
<a name="v2.0.0"></a>
|
|
65
|
+
# [v2.0.0](https://github.com/gdsfactory/doweb/releases/tag/v2.0.0) - 11 Apr 2024
|
|
66
|
+
|
|
67
|
+
# What's Changed
|
|
68
|
+
|
|
69
|
+
## New
|
|
70
|
+
|
|
71
|
+
- Kweb 2.0 [#47](https://github.com/gdsfactory/doweb/pull/47)
|
|
72
|
+
|
|
73
|
+
## Other changes
|
|
74
|
+
|
|
75
|
+
- update pyproject/workflows [#40](https://github.com/gdsfactory/doweb/pull/40)
|
|
76
|
+
- add add_missing_layers flag [#37](https://github.com/gdsfactory/doweb/pull/37)
|
|
77
|
+
- fix server_jupyter [#31](https://github.com/gdsfactory/doweb/pull/31)
|
|
78
|
+
|
|
79
|
+
## Dependency Updates
|
|
80
|
+
|
|
81
|
+
- Bump docutils from 0.21.post1 to 0.21.1 [#46](https://github.com/gdsfactory/doweb/pull/46)
|
|
82
|
+
- Bump docutils from 0.20.1 to 0.21.post1 [#45](https://github.com/gdsfactory/doweb/pull/45)
|
|
83
|
+
- Bump docutils from 0.17.1 to 0.20.1 [#23](https://github.com/gdsfactory/doweb/pull/23)
|
|
84
|
+
- Bump sphinx-book-theme from 0.3.3 to 1.1.2 [#41](https://github.com/gdsfactory/doweb/pull/41)
|
|
85
|
+
|
|
86
|
+
**Full Changelog**: https://github.com/gdsfactory/doweb/compare/v1.1.1...v1.1.2
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
[Changes][v2.0.0]
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
<a name="v1.1.1"></a>
|
|
93
|
+
# [1.1.1 (v1.1.1)](https://github.com/gdsfactory/doweb/releases/tag/v1.1.1) - 22 Aug 2023
|
|
94
|
+
|
|
95
|
+
* Add two app versions: viewer which only contains the gds viewer and browser which has the viewer and a file browser
|
|
96
|
+
* Re-add File Browser
|
|
97
|
+
|
|
98
|
+
[Changes][v1.1.1]
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
<a name="v1.0.0"></a>
|
|
102
|
+
# [v1.0.0](https://github.com/gdsfactory/doweb/releases/tag/v1.0.0) - 21 Aug 2023
|
|
103
|
+
|
|
104
|
+
* Add Bootstrap
|
|
105
|
+
* Rewrite Layer / Cell Hierarchy Views
|
|
106
|
+
|
|
107
|
+
[Changes][v1.0.0]
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
[v2.0.4]: https://github.com/gdsfactory/doweb/compare/v2.0.3...v2.0.4
|
|
111
|
+
[v2.0.3]: https://github.com/gdsfactory/doweb/compare/v2.0.2...v2.0.3
|
|
112
|
+
[v2.0.2]: https://github.com/gdsfactory/doweb/compare/v2.0.1...v2.0.2
|
|
113
|
+
[v2.0.1]: https://github.com/gdsfactory/doweb/compare/v2.0.0...v2.0.1
|
|
114
|
+
[v2.0.0]: https://github.com/gdsfactory/doweb/compare/v1.1.1...v2.0.0
|
|
115
|
+
[v1.1.1]: https://github.com/gdsfactory/doweb/compare/v1.0.0...v1.1.1
|
|
116
|
+
[v1.0.0]: https://github.com/gdsfactory/doweb/tree/v1.0.0
|
|
117
|
+
|
|
118
|
+
<!-- Generated by https://github.com/rhysd/changelog-from-release v3.7.2 -->
|
doweb-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 gdsfactory
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|